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-04-05 05:57:54 +02:00
|
|
|
+ env.Program('#$BINDIR/try', ['try.cpp'] + core) #### to try out some feature:
|
2007-08-17 00:36:07 +02:00
|
|
|
]
|
2007-07-02 05:27:20 +02:00
|
|
|
|