mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-22 17:43:52 +08:00
17 lines
246 B
Python
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)
|