15 lines
462 B
Python
15 lines
462 B
Python
config = {
|
|
'PROJECT_NAME': '@PROJECT_NAME@'
|
|
}
|
|
env = SConscript('external/scons-plus-plus/SConscript', exports = ['config'])
|
|
env.Append(CPPPATH = [Dir('private'), Dir('public')])
|
|
|
|
# add the default recipe repository
|
|
env.RecipeRepo('mewin', 'https://git.mewin.de/mewin/spp_recipes.git', 'stable')
|
|
# env.RecipeRepo('mewin', 'https://git.mewin.de/mewin/spp_recipes.git', 'testing')
|
|
|
|
# app
|
|
env = env.Module('private/@MODULE_FOLDER_NAME@/SModule')
|
|
|
|
env.Finalize()
|