rsoc/Day1/SConscript

9 lines
176 B
Python
Raw Normal View History

2024-07-22 20:00:29 +08:00
from building import *
import os
cwd =GetCurrentDir()
CPPPATH =[cwd]
src = ['hello.c']
group = DefineGroup('Hello_Test', src, depend = [''],CPPPATH = CPPPATH)
Return('group')