File: test3.asd

package info (click to toggle)
cl-asdf 1.86-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 352 kB
  • ctags: 178
  • sloc: lisp: 1,193; sh: 83; makefile: 54
file content (11 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
;;; -*- Lisp -*-
(asdf:defsystem test3
    :properties ((:prop1 . "value"))
    :components
  ((:module "deps"
	    :if-component-dep-fails :try-next
	    :pathname "."
	    :components
	    ((:file "file1" :in-order-to ((compile-op (feature :f1))))
	     (:file "file2" :in-order-to ((compile-op (feature :f2))))))))