You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
495 B
20 lines
495 B
5 months ago
|
import os
|
||
|
from building import *
|
||
|
|
||
|
Import('rtconfig')
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
src = Glob('src/*.c')
|
||
|
list = os.listdir(cwd + "/src")
|
||
|
if rtconfig.ARCH in list:
|
||
|
if os.path.exists(cwd + "/src/" + rtconfig.ARCH + "/" + rtconfig.CPU):
|
||
|
src += Glob("src/" + rtconfig.ARCH + "/" + rtconfig.CPU + "/*.c")
|
||
|
else:
|
||
|
src += Glob("src/" + rtconfig.ARCH + "/*.c")
|
||
|
CPPPATH = [cwd, cwd + "/inc"]
|
||
|
|
||
|
group = DefineGroup('ktime', src, depend=['RT_USING_KTIME'], CPPPATH=CPPPATH)
|
||
|
|
||
|
Return('group')
|