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.
18 lines
500 B
18 lines
500 B
1 year ago
|
Import('env', 'envCython', 'common')
|
||
2 years ago
|
|
||
1 year ago
|
cc_sources = [
|
||
|
"helpers/ekf_load.cc",
|
||
|
"helpers/ekf_sym.cc",
|
||
|
]
|
||
|
libs = ["dl"]
|
||
2 years ago
|
if common != "":
|
||
1 year ago
|
# for SWAGLOG support
|
||
|
libs += [common, 'zmq']
|
||
2 years ago
|
|
||
1 year ago
|
ekf_objects = env.SharedObject(cc_sources)
|
||
|
rednose = env.Library("helpers/ekf_sym", ekf_objects, LIBS=libs)
|
||
|
rednose_python = envCython.Program("helpers/ekf_sym_pyx.so", ["helpers/ekf_sym_pyx.pyx", ekf_objects],
|
||
|
LIBS=libs + envCython["LIBS"])
|
||
2 years ago
|
|
||
1 year ago
|
Export('rednose', 'rednose_python')
|