Reorganizing for greater good.
[cl-zmq.git] / zeromq.asd
blob2790e277b3e79c583f3b365b526616678731be75
1 ;; Copyright (c) 2009, 2010, 2011 Vitaly Mayatskikh <v.mayatskih@gmail.com>
2 ;;
3 ;; This file is part of CL-ZMQ.
4 ;;
5 ;; Vitaly Mayatskikh grants you the rights to distribute
6 ;; and use this software as governed by the terms
7 ;; of the Lisp Lesser GNU Public License
8 ;; (http://opensource.franz.com/preamble.html),
9 ;; known as the LLGPL.
11 (cl:eval-when (:load-toplevel :execute)
12   (asdf:operate 'asdf:load-op 'cffi-grovel))
14 (asdf:defsystem zeromq
15   :name "zeromq"
16   :version "0.2.0"
17   :author "Vitaly Mayatskikh <v.mayatskih@gmail.com>"
18   :licence "LGPLv3"
19   :description "Zero MQ 3 bindings"
20   :depends-on (:cffi :trivial-garbage)
21   :serial t
22   :components
23   ((:module "src"
24     :serial t
25     :components
26     ((:file "package")
27      (cffi-grovel:grovel-file "grovel")
28      (:file "meta")
29      (:file "zeromq")
30      (:file "zeromq-api")))))