-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreactif-lib.lisp
More file actions
27 lines (20 loc) · 865 Bytes
/
reactif-lib.lisp
File metadata and controls
27 lines (20 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;;;===================================================
;;; OM-reactive
;;; Author: Jean Bresson (IRCAM - 2012)
;;;===================================================
(in-package :om)
(compile&load (namestring (om-relative-path '("src") "reactive-boxes")))
(compile&load (namestring (om-relative-path '("src") "route")))
(compile&load (namestring (om-relative-path '("src") "collect")))
(compile&load (namestring (om-relative-path '("src") "receive")))
(pushnew :om-reactive *features*)
(om::set-lib-release 0.4)
;;; Use this to set the delay in box evaluation/notification
(defparameter *defcolortime* nil)
(print "
;;;===========================================================================
;;; OM-reactive
;;; prototype library for reactivity in OM
;;; Jean Bresson 2013
;;;===========================================================================
")