2005-03-16 15:59:34 +00:00
|
|
|
;; -*- mode: lisp -*-
|
2023-12-31 16:33:12 +00:00
|
|
|
(in-package :asdf-user)
|
2005-03-16 15:59:34 +00:00
|
|
|
|
2023-12-31 16:33:12 +00:00
|
|
|
(defsystem "osc"
|
|
|
|
:description "The Open Sound Control protocol, aka OSC"
|
2023-12-29 11:28:43 +00:00
|
|
|
:author "nik gaffney <nik@fo.am>"
|
2023-12-31 16:33:12 +00:00
|
|
|
:depends-on ("ieee-floats")
|
|
|
|
:version "0.9.1"
|
2023-12-29 11:28:43 +00:00
|
|
|
:licence "GPL v3"
|
2023-12-31 16:33:12 +00:00
|
|
|
:components ((:file "osc"))
|
|
|
|
:in-order-to ((test-op (test-op "osc/tests"))))
|
|
|
|
|
|
|
|
;; regression testing. can be ignored/disabled at run time if required
|
|
|
|
(defsystem "osc/tests"
|
|
|
|
:description "Tests for OSC library."
|
|
|
|
:depends-on ("osc" "fiveam")
|
|
|
|
:components ((:file "osc-tests"))
|
|
|
|
:perform (test-op (o c)
|
|
|
|
(uiop:symbol-call :fiveam '#:run! :synchroscope)))
|