Skip to content

Commit

Permalink
fix build with swaglog
Browse files Browse the repository at this point in the history
  • Loading branch information
adeebshihadeh authored Jul 2, 2023
1 parent 3689d81 commit 59705be
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rednose/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ libkf = env.SharedLibrary(f'{generated_folder}/libkf', lib_target)

lenv = envCython.Clone()
lenv["LINKFLAGS"] += [libkf[0].get_labspath()]
lenv["LIBS"] = [common] + lenv["LIBS"]

# for SWAGLOG support
if common != "":
lenv["LIBS"] = ['zmq', common] + lenv["LIBS"]

ekf_sym_so = lenv.Program('#rednose/helpers/ekf_sym_pyx.so', [ekf_sym_pyx, ekf_sym_cc, common_ekf])
lenv.Depends(ekf_sym_so, libkf)

Expand Down

0 comments on commit 59705be

Please sign in to comment.