2011-12-03 06:10:12 +01:00
|
|
|
# -*- python -*-
|
|
|
|
|
##
|
|
|
|
|
## SConscript - SCons buildscript for experiments and investigations.
|
|
|
|
|
## Things defined here usuall won't be installed
|
|
|
|
|
##
|
|
|
|
|
|
2012-01-09 02:56:29 +01:00
|
|
|
Import('env core support_lib')
|
2011-12-03 06:10:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-07 02:53:07 +01:00
|
|
|
envR = env.Clone()
|
|
|
|
|
# envR.Append(CCFLAGS=' -O3 ')
|
2011-12-03 06:10:12 +01:00
|
|
|
|
|
|
|
|
# build additional test and administrative tools....
|
2012-01-07 02:53:07 +01:00
|
|
|
experiments = [ envR.Program('try', ['try.cpp'] + support_lib) #### to try out some feature...
|
2011-12-03 06:10:12 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# define Phony targets
|
|
|
|
|
# - 'scons research' triggers building of experimental code
|
|
|
|
|
#
|
|
|
|
|
env.Alias('research', experiments )
|