Skip to content

Commit

Permalink
[server] Add separated usocket-server.asd
Browse files Browse the repository at this point in the history
  • Loading branch information
binghe committed Oct 25, 2016
1 parent 0c9522f commit 1cc4dfb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
10 changes: 10 additions & 0 deletions usocket-server.asd
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(in-package :asdf)

(defsystem usocket-server
:name "usocket (server)"
:author "Chun Tian (binghe)"
:version "1.0"
:licence "MIT"
:description "Universal socket library for Common Lisp (server side)"
:depends-on (:usocket :portable-threads)
:components ((:file "server")))
11 changes: 2 additions & 9 deletions usocket.asd
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
;;;;
;;;; See the LICENSE file for licensing information.

(in-package :asdf)

(defsystem usocket
:name "usocket (client)"
:author "Erik Enge & Erik Huelsmann"
Expand Down Expand Up @@ -33,15 +35,6 @@
#+scl (:file "scl")))
(:file "option" :depends-on ("backend"))))

(defsystem usocket-server
:name "usocket (server)"
:author "Chun Tian (binghe)"
:version "1.0"
:licence "MIT"
:description "Universal socket library for Common Lisp (server side)"
:depends-on (:usocket :portable-threads)
:components ((:file "server")))

(defmethod perform ((op test-op) (c (eql (find-system :usocket))))
(oos 'load-op :usocket-server)
(oos 'load-op :usocket-test)
Expand Down

0 comments on commit 1cc4dfb

Please sign in to comment.