rsoc/hello/SConscript
2024-07-22 20:00:29 +08:00

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')