11 lines
246 B
Common Lisp
11 lines
246 B
Common Lisp
;; -*- mode: lisp -*-
|
|
|
|
(in-package #:asdf)
|
|
|
|
(defsystem osc
|
|
:name "osc"
|
|
:author "nik gaffney <nik@fo.am>"
|
|
:licence "LLGPL"
|
|
:description "The Open Sound Control protocol, aka OSC"
|
|
:version "0.1"
|
|
:components ((:file "osc")))
|