2020-10-05 01:11:08 +02:00
|
|
|
(defpackage #:fb
|
|
|
|
(:use :cl :asdf))
|
|
|
|
|
|
|
|
(defsystem "fb"
|
|
|
|
:name "Fancy Build"
|
|
|
|
:pathname "src/"
|
|
|
|
|
2020-10-05 02:05:09 +02:00
|
|
|
:depends-on (#:osicat #:ironclad #:cl-conspack)
|
2020-10-05 01:11:08 +02:00
|
|
|
|
|
|
|
:components ((:file "dependable")
|
2020-10-05 08:26:13 +02:00
|
|
|
(:file "misc" :depends-on ("dependable"))
|
|
|
|
(:file "parallel-build" :depends-on ("dependable" "misc"))
|
2020-10-05 03:12:15 +02:00
|
|
|
(:file "buildables/rebuilt-on-file-change" :depends-on ("dependable"))
|
2020-10-05 08:26:13 +02:00
|
|
|
(:file "fb-entry" :depends-on ("dependable" "parallel-build" "misc")))
|
2020-10-05 01:11:08 +02:00
|
|
|
|
|
|
|
:build-pathname "fb"
|
|
|
|
:entry-point "fancybuild:main")
|
|
|
|
|
|
|
|
|
|
|
|
;#+sb-core-compression
|
|
|
|
;(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
|
|
|
|
; (uiop:dump-image (asdf:output-file o c) :executable t :compression t))
|
|
|
|
|
|
|
|
(defsystem "fb/release"
|
|
|
|
:depends-on (:fb)
|
|
|
|
|
|
|
|
:entry-point "fancybuild:main"
|
|
|
|
:build-pathname "fb"
|
|
|
|
:build-operation "asdf:program-op")
|
|
|
|
|
|
|
|
(defsystem "fb/image"
|
|
|
|
:depends-on (:fb)
|
|
|
|
|
|
|
|
:build-pathname "fb"
|
|
|
|
:build-operation "asdf:image-op")
|