yeah! it works. some problems though. - problem-A : reference arguments * we're storing the parameters as-is * for not-yet-bound commands we need to store default constructed values * together this means we can not handle reference arguments - problem-B : noncopyable arguments * especially our Time values are noncopyable. * this is going to become a huge problem for sure!
24 lines
676 B
Python
24 lines
676 B
Python
# -*- python -*-
|
|
##
|
|
## SConscript - SCons buildscript for experiments and investigations.
|
|
## Things defined here usuall won't be installed
|
|
##
|
|
|
|
Import('env core support_lib')
|
|
|
|
|
|
|
|
envR = env.Clone()
|
|
envR.Append(CPPPATH='research')
|
|
# envR.Append(CCFLAGS=' -O3 ')
|
|
|
|
# build additional test and administrative tools....
|
|
experiments = [ envR.Program('try', ['try.cpp'] + core) #### to try out some feature...
|
|
, envR.Program('clang-static-init', ['clang-static-init-1.cpp', 'clang-static-init-2.cpp'])
|
|
]
|
|
|
|
#
|
|
# define Phony targets
|
|
# - 'scons research' triggers building of experimental code
|
|
#
|
|
env.Alias('research', experiments )
|