rsoc/Day1/SConscript

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