Export RAW, MSG-RAW and POLLITEM-RAW.
[cl-zmq.git] / zeromq.asd
blob3aa8d5e622568fc13586c2d3ccda8060494028ab
1 ;; Copyright (c) 2009 Vitaly Mayatskikh <v.mayatskih@gmail.com>
2 ;;
3 ;; This file is part of 0MQ.
4 ;;
5 ;; 0MQ is free software; you can redistribute it and/or modify it under
6 ;; the terms of the Lesser GNU General Public License as published by
7 ;; the Free Software Foundation; either version 3 of the License, or
8 ;; (at your option) any later version.
9 ;;
10 ;; 0MQ is distributed in the hope that it will be useful,
11 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ;; Lesser GNU General Public License for more details.
15 ;; You should have received a copy of the Lesser GNU General Public License
16 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 (cl:eval-when (:load-toplevel :execute)
19   (asdf:operate 'asdf:load-op :cffi)
20   (asdf:operate 'asdf:load-op :trivial-garbage)
21   (asdf:operate 'asdf:load-op :iolib.syscalls))
23 (defpackage #:zeromq-asd
24   (:use :cl :asdf))
26 (in-package #:zeromq-asd)
28 (defsystem zeromq
29   :name "zeromq"
30   :version "0.1"
31   :author "Vitaly Mayatskikh <v.mayatskih@gmail.com>"
32   :licence "LGPLv3"
33   :description "Zero MQ 2 bindings"
34   :serial t
35   :components ((:file "package")
36                (:file "meta")
37                (:file "zeromq")
38                (:file "zeromq-api")))