[s-xml-cvs] CVS s-xml
scaekenberghe
scaekenberghe at common-lisp.net
Fri Feb 15 13:54:57 UTC 2008
Update of /project/s-xml/cvsroot/s-xml
In directory clnet:/tmp/cvs-serv15874
Modified Files:
s-xml.asd
Log Message:
patch contributed by Gismo / Luca Capello:
- splitted source code files from test in test and examples directory
- added s-xml.test asdf to compile/load the tests
- added s-xml.examples to compile/load the examples
- modified path references in the test code to use the asdf location
--- /project/s-xml/cvsroot/s-xml/s-xml.asd 2005/12/14 21:49:04 1.2
+++ /project/s-xml/cvsroot/s-xml/s-xml.asd 2008/02/15 13:54:57 1.3
@@ -1,6 +1,6 @@
;;;; -*- Mode: LISP -*-
;;;;
-;;;; $Id: s-xml.asd,v 1.2 2005/12/14 21:49:04 scaekenberghe Exp $
+;;;; $Id: s-xml.asd,v 1.3 2008/02/15 13:54:57 scaekenberghe Exp $
;;;;
;;;; The S-XML ASDF system definition
;;;;
@@ -31,4 +31,19 @@
(:file "sxml-dom" :depends-on ("dom"))
(:file "xml-struct-dom" :depends-on ("dom"))))))
+(defsystem :s-xml.test
+ :depends-on (:s-xml)
+ :components ((:module :test
+ :components ((:file "test-xml")
+ (:file "test-xml-struct-dom")
+ (:file "test-lxml-dom")
+ (:file "test-sxml-dom")))))
+
+(defsystem :s-xml.examples
+ :depends-on (:s-xml)
+ :components ((:module :examples
+ :components ((:file "counter")
+ (:file "echo")
+ (:file "remove-markup")
+ (:file "tracer")))))
;;;; eof
More information about the S-xml-cvs
mailing list