Added documentation bits for upper level functions (copied form low
[cl-zmq.git] / cl-zmq.asd
blob314db18f8a910785e755701476ea6cf4af25853b
1 ;; Copyright 2009 Vitaly Mayatskikh <v.mayatskih@gmail.com>
2 ;;
3 ;; This file is a part of CL-ZMQ
4 ;;
5 ;; CL-ZMQ is free software: you can redistribute it and/or modify
6 ;; it under the terms of the 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 ;; CL-ZMQ 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 ;; GNU General Public License for more details.
15 ;; You should have received a copy of the 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-grovel)
20   (asdf:operate 'asdf:load-op :trivial-garbage)
21   (asdf:operate 'asdf:load-op :closer-mop)
22   (asdf:operate 'asdf:load-op :iolib.syscalls))
24 (defpackage #:cl-zmq-asd
25   (:use :cl :asdf))
27 (in-package #:cl-zmq-asd)
29 (defsystem cl-zmq
30   :name "cl-zmq"
31   :version "0.1"
32   :author "Vitaly Mayatskikh <v.mayatskih@gmail.com>"
33   :licence "GPLv3"
34   :description "Zero MQ 2 bindings"
35   :serial t
36   :components ((:file "package")
37                (:file "meta")
38                (:file "zmq")
39                (:file "zmq-api")))