2007-07-02 05:27:20 +02:00
|
|
|
# -*- python -*-
|
|
|
|
|
##
|
|
|
|
|
## SConscript - SCons buildscript for tool subdirectory (called by SConstruct)
|
|
|
|
|
##
|
|
|
|
|
|
2008-04-05 05:57:54 +02:00
|
|
|
Import('env','artifacts','core')
|
2007-07-02 05:27:20 +02:00
|
|
|
|
2007-08-17 00:36:07 +02:00
|
|
|
|
2007-07-02 05:27:20 +02:00
|
|
|
# build the ubiquitous Hello World application (note: C source)
|
2007-08-17 00:36:07 +02:00
|
|
|
artifacts['tools'] = [ env.Program('#$BINDIR/hello-world','hello.c')
|
2008-09-08 05:22:31 +02:00
|
|
|
+ env.Program('#$BINDIR/luidgen', ['luidgen.c']+core)
|
2008-10-26 22:35:01 +01:00
|
|
|
+ env.Program('#$BINDIR/try', 'try.cpp') #### to try out some feature...
|
2007-08-17 00:36:07 +02:00
|
|
|
]
|
2007-07-02 05:27:20 +02:00
|
|
|
|