mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-08 13:12:09 +01:00
Now build old classes and build tests are command line settings.
This commit is contained in:
parent
d5d3ac9e9c
commit
40d2f95a57
9
SCsub
9
SCsub
@ -4,6 +4,15 @@ Import('env')
|
||||
|
||||
module_env = env.Clone()
|
||||
|
||||
module_env.pmlpp_build_old_classes = True
|
||||
module_env.pmlpp_build_tests = True
|
||||
|
||||
if ARGUMENTS.get('pmlpp_build_old_classes', 'yes') == 'no':
|
||||
module_env.pmlpp_build_old_classes = False
|
||||
|
||||
if ARGUMENTS.get('pmlpp_build_tests', 'yes') == 'no':
|
||||
module_env.pmlpp_build_tests = False
|
||||
|
||||
sources = [
|
||||
"register_types.cpp",
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user