From 3c6e530d2ebd4ba52cf19efc62a094d778afa2fe Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Fri, 22 Nov 2024 15:29:05 -0600 Subject: [PATCH] SConscript (#1520) * try this * better * and that * fix that --- SConscript | 4 ++++ SConstruct | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 SConscript diff --git a/SConscript b/SConscript new file mode 100644 index 00000000..2a3e11b2 --- /dev/null +++ b/SConscript @@ -0,0 +1,4 @@ +Import("env") + +SConscript(['opendbc/can/SConscript'], exports={'env': env}) +SConscript(['opendbc/dbc/SConscript'], exports={'env': env}) diff --git a/SConstruct b/SConstruct index 7853c0aa..3a1eeffd 100644 --- a/SConstruct +++ b/SConstruct @@ -76,5 +76,4 @@ envCython["LIBS"] = python_libs Export('envCython') -SConscript(['opendbc/can/SConscript']) -SConscript(['opendbc/dbc/SConscript']) \ No newline at end of file +SConscript(['SConscript'])