17 lines
432 B
Python
17 lines
432 B
Python
config = {
|
|
'PROJECT_NAME': 'RAID Framework'
|
|
}
|
|
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')
|
|
|
|
# library
|
|
env = env.Module('private/raid/SModule')
|
|
|
|
# test app
|
|
env = env.Module('private/raid_test/SModule')
|
|
|
|
env.Finalize()
|