reorganize the system around radiance specific build conventions.
This commit is contained in:
parent
8298dfed4c
commit
c6ebce4fdd
14
asteroid.asd
14
asteroid.asd
|
|
@ -6,11 +6,19 @@
|
|||
:author "Brian O'Reilly <fade@deepsky.com>"
|
||||
:license "GNU AFFERO GENERAL PUBLIC LICENSE V.3"
|
||||
:serial t
|
||||
:depends-on (:RADIANCE
|
||||
:SPINNERET
|
||||
:CL-JSON
|
||||
:version "0.0.0"
|
||||
:defsystem-depends-on (:radiance)
|
||||
:class "radiance:virtual-module"
|
||||
|
||||
:depends-on (:radiance
|
||||
:r-clip
|
||||
:spinneret
|
||||
:cl-json
|
||||
;; :com.inuoe.jzon
|
||||
:dexador
|
||||
)
|
||||
:pathname "./"
|
||||
:components ((:file "app-utils")
|
||||
(:file "module")
|
||||
(:file "asteroid")))
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,9 @@
|
|||
;; -*-lisp-*-
|
||||
(defpackage :asteroid
|
||||
(:use :cl :radiance)
|
||||
(:use :asteroid.app-utils)
|
||||
(:export :-main
|
||||
:start-server
|
||||
:stop-server
|
||||
:run-server))
|
||||
;; (defpackage :asteroid
|
||||
;; (:use :cl :radiance)
|
||||
;; (:use :asteroid.app-utils)
|
||||
|
||||
;; (:export :-main :start-server :stop-server :run-server))
|
||||
|
||||
(in-package :asteroid)
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
(in-package #:rad-user)
|
||||
(define-module #:asteroid
|
||||
(:use #:cl #:radiance #:asteroid.app-utils))
|
||||
Loading…
Reference in New Issue