Switch from json11 to nlohmann/json (#31093)
* Initial commit * fix release/file_common * Update common/swaglog.cc * Swtiched serialize cc * move to lfs --------- Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> old-commit-hash: ee036482b8152f0e7650895c6f4bac5d4f00e00f
This commit is contained in:
@@ -12,7 +12,7 @@ common_libs = [
|
||||
if arch != "Darwin":
|
||||
common_libs.append('gpio.cc')
|
||||
|
||||
_common = env.Library('common', common_libs, LIBS="json11")
|
||||
_common = env.Library('common', common_libs)
|
||||
|
||||
files = [
|
||||
'clutil.cc',
|
||||
@@ -24,10 +24,10 @@ Export('_common', '_gpucommon')
|
||||
if GetOption('extras'):
|
||||
env.Program('tests/test_common',
|
||||
['tests/test_runner.cc', 'tests/test_params.cc', 'tests/test_util.cc', 'tests/test_swaglog.cc'],
|
||||
LIBS=[_common, 'json11', 'zmq', 'pthread'])
|
||||
LIBS=[_common, 'zmq', 'pthread'])
|
||||
|
||||
# Cython bindings
|
||||
params_python = envCython.Program('params_pyx.so', 'params_pyx.pyx', LIBS=envCython['LIBS'] + [_common, 'zmq', 'json11'])
|
||||
params_python = envCython.Program('params_pyx.so', 'params_pyx.pyx', LIBS=envCython['LIBS'] + [_common, 'zmq'])
|
||||
|
||||
SConscript([
|
||||
'transformations/SConscript',
|
||||
|
||||
Reference in New Issue
Block a user