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
|
|
|
|
2009-01-13 11:52:04 +01:00
|
|
|
support_lib = artifacts['support']
|
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')
|
2009-01-13 11:52:04 +01:00
|
|
|
+ env.Program('#$BINDIR/luidgen', ['luidgen.c'] + support_lib)
|
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
|
|
|
|