-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOMio.lisp
50 lines (31 loc) · 1.21 KB
/
OMio.lisp
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
;; OMio - 0.2 - OM input/output: designed to make easier to import/export data
;; 24/oct/2022
(defvar omio)
(defpackage :omio)
(in-package :omio)
(mapc 'om::compile&load (list
;(make-pathname :directory (append (pathname-directory *load-pathname*) (list "sources")) :name "xmls" :type "lisp")
(make-pathname :directory (append (pathname-directory *load-pathname*) (list "sources")) :name "omiocsv" :type "lisp")
))
;; menu/sub-menu structure
;("sub-pack-name" subpacke-lists class-list function-list class-alias-list)
; (defvar omio)
;
; (defpackage omio)
(defvar *subpackages-list* nil)
(setf *subpackages-list*
'( ("csv" nil nil (csv-floats-in) nil)
;("csv" nil nil (csv-floats-in csv-floats-in2) nil)
))
;--------------------------------------------------
;filling packages
;--------------------------------------------------
(om::fill-library *subpackages-list*)
(om::set-lib-release 0.2)
(print "
;;;-----------------
;;; OMio 0.2 - in/out functions for OpenMusic
;;;
;;; Jose Henrique Padovani (2022)
;;;===========================================================================
")