9 lines
181 B
Python
9 lines
181 B
Python
from building import *
|
|
|
|
src = Glob('*.c')
|
|
CPPPATH = [os.path.join(GetCurrentDir(),'..')]
|
|
|
|
group = DefineGroup('player_test', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|