]> asedeno.scripts.mit.edu Git - cl-protobufs.git/blob - protobufs.asd
Add a lighter weight version of 'list-of' just for Protobufs
[cl-protobufs.git] / protobufs.asd
1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2 ;;;                                                                  ;;;
3 ;;; Confidential and proprietary information of ITA Software, Inc.   ;;;
4 ;;;                                                                  ;;;
5 ;;; Copyright (c) 2012 ITA Software, Inc.  All rights reserved.      ;;;
6 ;;;                                                                  ;;;
7 ;;; Original author: Scott McKay                                     ;;;
8 ;;;                                                                  ;;;
9 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
10
11 (in-package "CL-USER")
12
13
14 (defsystem :protobufs
15     :name "Protobufs"
16     :author "Scott McKay"
17     :version "0.1"
18     :maintainer '("Scott McKay")
19     :licence "
20 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
21 ;;;                                                                  ;;;
22 ;;; Confidential and proprietary information of ITA Software, Inc.   ;;;
23 ;;;                                                                  ;;;
24 ;;; Copyright (c) 2012 ITA Software, Inc.  All rights reserved.      ;;;
25 ;;;                                                                  ;;;
26 ;;; Original author: Scott McKay                                     ;;;
27 ;;;                                                                  ;;;
28 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
29     :description      "Protobufs for Common Lisp"
30     :long-description "Protobufs for Common Lisp"
31     :depends-on (:cl-ppcre
32                  :closer-mop
33                  :split-sequence
34                  :drakma
35                  :cl-unicode)
36     :serial t
37     :components
38       ((:module "protobufs"
39                 :serial t
40                 :components ((:file "proto-pkgdcl")
41                              (:file "utilities")
42                              (:file "model-classes")
43                              (:file "printer")
44                              (:file "parser")
45                              (:file "define-proto")
46                              (:file "upgradable")
47                              (:file "clos-transform")
48                              (:file "wire-format")
49                              (:file "text-format")
50                              (:file "serialize")
51                              (:file "api")
52                              (:file "asdf-support")
53                              (:file "examples")))))
54
55