9 lines
176 B
Python
9 lines
176 B
Python
from building import *
|
|
import os
|
|
|
|
cwd =GetCurrentDir()
|
|
CPPPATH =[cwd]
|
|
src = ['hello.c']
|
|
group = DefineGroup('Hello_Test', src, depend = [''],CPPPATH = CPPPATH)
|
|
|
|
Return('group') |