Files
rsoc/Day1/SConscript
2024-07-23 17:15:36 +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')