forked from dbmcclain/vmath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scigraph.asd
24 lines (22 loc) · 985 Bytes
/
scigraph.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(asdf:defsystem "scigraph"
:description "scigraph: a graphical plotting system"
:version "1.0"
:author "D.McClain <[email protected]>"
:license "Copyright (c) 2008 by SpectroDynamics, LLC. All rights reserved."
:components (
#+:WIN32
(:MODULE "Win"
:COMPONENTS ((:file "win_scigraph_intf")
(:file "win-scigraph"
:depends-on ("win_scigraph_intf"))))
#+:MACOSX
(:MODULE "Mac"
:COMPONENTS ((:file "mac-scigraph-macros")
(:file "mac_scigraph_intf"
:depends-on ("mac-scigraph-macros"))
(:file "mac-scigraph"
:depends-on ("mac_scigraph_intf"))))
(:file "surfplot")
(:file "images"))
:depends-on ("vmath"
#+:MACOSX "aquaterm"))