multi-part message functionality available via zmq:sndmore and zmq:rcvmore.
[cl-zmq.git] / zeromq.asd
blobf9152a8e8c6dd6a62d94c0ebbe29704a0adb2506
1 ;; Copyright (c) 2009, 2010 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 #-windows
22   (asdf:operate 'asdf:load-op :iolib.syscalls))
24 (defpackage #:zeromq-asd
25   (:use :cl :asdf))
27 (in-package #:zeromq-asd)
29 (defsystem zeromq
30   :name "zeromq"
31   :version "0.1"
32   :author "Vitaly Mayatskikh <v.mayatskih@gmail.com>"
33   :licence "LGPLv3"
34   :description "Zero MQ 2 bindings"
35   :serial t
36   :components ((:file "package")
37                (:file "meta")
38                (:file "zeromq")
39                (:file "zeromq-api")))