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