Fix client example.
[cl-cluster.git] / cl-cluster.asd
blobf5cd84868852d2876f5f0494512ac1426a9a0f9b
1 ;; Copyright 2009, 2010 Vitaly Mayatskikh <v.mayatskih@gmail.com>
2 ;;
3 ;; This file is a part of CL-Cluster
4 ;;
5 ;; CL-Cluster 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-Cluster 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 :bordeaux-threads)
20   (asdf:operate 'asdf:load-op :split-sequence)
21   (asdf:operate 'asdf:load-op :eager-future)
22   (asdf:operate 'asdf:load-op :trivial-garbage)
23   (asdf:operate 'asdf:load-op :zeromq))
25 (defpackage #:cl-cluster-asd
26   (:use :cl :asdf))
28 (in-package #:cl-cluster-asd)
30 (defsystem cl-cluster
31   :name "cl-cluster"
32   :version "0.2"
33   :author "Vitaly Mayatskikh <v.mayatskih@gmail.com>"
34   :licence "GPLv3"
35   :description "CL Cluster implementation"
36   :serial t
37   :components ((:file "package")
38                (:file "cluster")
39                (:file "meta")
40                (:file "transport-ssh")
41                (:file "transport-zmq")))