summaryrefslogtreecommitdiff
path: root/src/bgpstore.asd
diff options
context:
space:
mode:
Diffstat (limited to 'src/bgpstore.asd')
-rw-r--r--src/bgpstore.asd10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/bgpstore.asd b/src/bgpstore.asd
new file mode 100644
index 0000000..396bd9d
--- /dev/null
+++ b/src/bgpstore.asd
@@ -0,0 +1,10 @@
+;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+(asdf:defsystem #:bgpstore
+ :name "bgpstore"
+ :version "0.0.1"
+ :depends-on (#:cxml #:usocket #:postmodern)
+ :components ((:file "package")
+ (:file "util" :depends-on ("package"))
+ (:file "data" :depends-on ("util"))
+ (:file "bgpstore" :depends-on ("data"))))