diff --git a/SConscript b/SConscript new file mode 100644 index 0000000..f0ca535 --- /dev/null +++ b/SConscript @@ -0,0 +1,12 @@ +from building import * + +cwd = GetCurrentDir() +src = Glob('*.c') +path = [cwd + '/include'] + +if GetDepend('PKG_USING_CONTROLLER'): + src += Glob('src/*.c') + +group = DefineGroup('Controller', src, depend = ['PKG_USING_CONTROLLER'], CPPPATH = path) + +Return('group') \ No newline at end of file