12 lines
417 B
Common Lisp
12 lines
417 B
Common Lisp
(defsystem cockpit
|
|
:serial t
|
|
:defsystem-depends-on (:asdf-package-system)
|
|
:class :package-inferred-system
|
|
:around-compile (lambda (thunk)
|
|
(proclaim '(optimize (debug 3) (safety 3) (speed 0)))
|
|
(funcall thunk))
|
|
:depends-on ("sextant"
|
|
"cockpit/options/all")
|
|
:components ((:file "cockpit")))
|
|
|
|
(register-system-packages "cockpit/options/all" '(:options))
|