-
Notifications
You must be signed in to change notification settings - Fork 4
/
policy-cond.asd
20 lines (19 loc) · 980 Bytes
/
policy-cond.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;;; policy-cond.asd
;;;;
;;;; Copyright (c) 2014 Robert Smith
(asdf:defsystem #:policy-cond
:description "Tools to insert code based on compiler policy."
:long-description "POLICY-COND provides tools to insert and execute code based on one's compiler's OPTIMIZE policy. It also contains a contract-like notion of 'expectations', which allow dynamic checking or inclusion of various things to happen depending on compiler policy."
:author "Robert Smith <[email protected]>"
:maintainer "Robert Smith <[email protected]>"
:license "BSD 3-clause (See LICENSE)"
:depends-on ((:feature :sbcl
:sb-cltl2) ; An SBCL contrib enacapsulated via ASDF
(:feature (:not (:or :sbcl :lispworks :cmucl :ccl :allegro))
:cl-environments))
:serial t
:components ((:static-file "LICENSE.txt")
(:file "package")
(:file "policy-cond")
(:file "expectations")
(:file "policy")))