15 lines
308 B
Python
15 lines
308 B
Python
|
|
config = {
|
|
'PROJECT_NAME': 'S++ Codegen Test',
|
|
'SPP_TARGET_VERSION': (1, 1, 0)
|
|
}
|
|
|
|
env = SConscript('../../SConscript', exports = ['config'])
|
|
|
|
# recipe repo
|
|
env.RecipeRepo('mewin', 'https://git.mewin.de/mewin/spp_recipes.git', 'stable')
|
|
|
|
# app
|
|
env = env.Module('private/test/SModule')
|
|
|
|
env.Finalize() |