11 lines
203 B
Python
11 lines
203 B
Python
|
|
from building import *
|
||
|
|
import os
|
||
|
|
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
src = Glob('s_curve_planner/src/*.cpp')
|
||
|
|
CPPPATH = [cwd]
|
||
|
|
|
||
|
|
group = DefineGroup('controller', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
|
||
|
|
Return('group')
|