summaryrefslogtreecommitdiff
path: root/objective-cl.asd
blob: b3f7f8af270182b0dd407591aad889e59d9b68c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defsystem "objective-cl"
  :description "A portable Objective C bridge."
  :version "0.0.1"
  :author "Matthias Benkard <matthias@benkard.de>"
  :licence "GNU General Public License, version 3 or higher"
  :depends-on (#:cffi #:trivial-garbage)
  :components ((:file "defpackage")
               (:file "constant-data")
               (:file "data-types")
               (:file "libobjcl")
               (:file "utilities")
               (:file "weak-hash-tables")
               (:file "memory-management")
               (:file "method-invocation")
               (:file "reader-syntax")
               (:file "objcl"))
  :serial t)