Attempt to port to ASDF2 -- tested only on ASDF1 though
This commit is contained in:
committed by
David Lichteblau
parent
7649cb9b4f
commit
7f4ed3cd41
12
cxml.asd
12
cxml.asd
@ -47,7 +47,8 @@
|
||||
|
||||
(asdf:defsystem :cxml-xml
|
||||
:default-component-class closure-source-file
|
||||
:pathname (merge-pathnames
|
||||
:pathname #+asdf2 "xml/"
|
||||
#-asdf2 (merge-pathnames
|
||||
"xml/"
|
||||
(make-pathname :name nil :type nil :defaults *load-truename*))
|
||||
:components
|
||||
@ -92,7 +93,8 @@
|
||||
|
||||
(asdf:defsystem :cxml-dom
|
||||
:default-component-class closure-source-file
|
||||
:pathname (merge-pathnames
|
||||
:pathname #+asdf2 "dom/"
|
||||
#-asdf2 (merge-pathnames
|
||||
"dom/"
|
||||
(make-pathname :name nil :type nil :defaults *load-truename*))
|
||||
:components
|
||||
@ -108,7 +110,8 @@
|
||||
|
||||
(asdf:defsystem :cxml-klacks
|
||||
:default-component-class closure-source-file
|
||||
:pathname (merge-pathnames
|
||||
:pathname #+asdf2 "klacks/"
|
||||
#-asdf2 (merge-pathnames
|
||||
"klacks/"
|
||||
(make-pathname :name nil :type nil :defaults *load-truename*))
|
||||
:serial t
|
||||
@ -121,7 +124,8 @@
|
||||
|
||||
(asdf:defsystem :cxml-test
|
||||
:default-component-class closure-source-file
|
||||
:pathname (merge-pathnames
|
||||
:pathname #+asdf2 "test/"
|
||||
#-asdf2 (merge-pathnames
|
||||
"test/"
|
||||
(make-pathname :name nil :type nil :defaults *load-truename*))
|
||||
:components ((:file "domtest") (:file "xmlconf"))
|
||||
|
||||
Reference in New Issue
Block a user