stethoscopic
This commit is contained in:
parent
e46e9b1942
commit
7a3805a4d9
2 changed files with 6 additions and 6 deletions
8
osc.asd
8
osc.asd
|
@ -1,12 +1,12 @@
|
|||
;; -*- mode: lisp -*-
|
||||
|
||||
(in-package #:common-lisp-user)
|
||||
(in-package #:cl-user)
|
||||
|
||||
(asdf:defsystem osc
|
||||
:name "osc"
|
||||
:author "nik gaffney <nik@fo.am>"
|
||||
:licence "LLGPL"
|
||||
:description "The Open Sound Control protocol, aka OSC"
|
||||
:licence "GPL v3"
|
||||
:description "The Open Sound Control protocol aka OSC"
|
||||
:version "0.7"
|
||||
:components
|
||||
((:file "osc" :depends-on ("osc-data" "osc-time"))
|
||||
|
@ -16,7 +16,7 @@
|
|||
(:file "package")
|
||||
(:module "devices"
|
||||
:depends-on ("package" "osc-data")
|
||||
::components
|
||||
:components
|
||||
((:file "socket-functions")
|
||||
(:file "device")
|
||||
(:file "transmitter"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
(defpackage :osc
|
||||
(:use :cl :sb-bsd-sockets)
|
||||
(:documentation "OSC aka the 'open sound control' protocol")
|
||||
(:use #:cl #:usocket)
|
||||
(:documentation "OSC, the 'Open Sound Control' protocol.")
|
||||
(:export
|
||||
#:make-message
|
||||
#:message
|
||||
|
|
Loading…
Reference in a new issue