Files
dragonpilot/phonelibs/qpoases/SConscript
T
Vehicle Researcher 36282d9752 openpilot v0.7 release
2019-12-13 13:03:08 -08:00

17 lines
246 B
Python

Import('env', 'interface_dir')
qp_files = [
Glob("SRC/*.cpp"),
Glob("SRC/EXTRAS/*.cpp"),
]
cpp_path = [
".",
"INCLUDE",
"INCLUDE/EXTRAS",
"SRC/",
interface_dir,
]
env.Library('qpoases', qp_files, CPPPATH=cpp_path)