tusocket-server.asd - clic - Clic is an command line interactive client for gopher written in Common LISP
(HTM) git clone git://bitreich.org/clic/ git://hg6vgqziawt5s4dj.onion/clic/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) LICENSE
---
tusocket-server.asd (413B)
---
1 ;;;; -*- Mode: Lisp -*-
2 ;;;;
3 ;;;; See the LICENSE file for licensing information.
4
5 (in-package :asdf)
6
7 (defsystem #:usocket-server
8 :name "usocket (server)"
9 :author "Chun Tian (binghe)"
10 :version (:read-file-form "version.sexp")
11 :licence "MIT"
12 :description "Universal socket library for Common Lisp (server side)"
13 :depends-on (:usocket :portable-threads)
14 :components ((:file "server")))