Changeset 15012
- Timestamp:
- 05/23/17 11:00:05 (6 years ago)
- Location:
- trunk/abcl/contrib/abcl-build
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/abcl-build/abcl-build.asd
r15009 r15012 5 5 :version "2.0.0" 6 6 :description "Build ABCL from a Lisp. Downloads necessary build-time tools to local cache." 7 :in-order-to ((test-op (test-op abcl-build /t)))7 :in-order-to ((test-op (test-op abcl-build-tests))) 8 8 :components ((:module package 9 9 :pathname "build/" … … 25 25 (:file "deprecated"))))) 26 26 27 (defsystem abcl-build/t28 :description "Test ABCL build system."29 :defsystem-depends-on (prove-asdf)30 :depends-on (abcl-build31 prove)32 :perform (asdf:test-op (op c)33 (uiop:symbol-call :prove-asdf 'run-test-system c))34 :components ((:module package35 :pathname "build/t/"36 :components ((:file "package")))37 (:module build38 :depends-on (package)39 :pathname "build/t/"40 :components ((:test-file "util")41 (:test-file "install")42 (:test-file "ant")43 (:test-file "maven")44 (:test-file "abcl-build")))))45 46 27 47 28
Note: See TracChangeset
for help on using the changeset viewer.