From a0c4bab7a1b4af24898447ac5dcf0bbdf0bbf257 Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Sun, 25 Aug 2024 04:51:07 +0800 Subject: [PATCH] scons: cleanup cpppath (#33370) cleanup cpppath old-commit-hash: 44c3156fa4bab81dbb9424cf65f18a8155225386 --- SConstruct | 1 - third_party/SConscript | 2 -- 2 files changed, 3 deletions(-) diff --git a/SConstruct b/SConstruct index c3e0f5805c..fea47440cf 100644 --- a/SConstruct +++ b/SConstruct @@ -199,7 +199,6 @@ env = Environment( "#third_party/linux/include", "#third_party/snpe/include", "#third_party", - "#cereal", "#msgq", ], diff --git a/third_party/SConscript b/third_party/SConscript index e5bbfaa07a..507c17c4a5 100644 --- a/third_party/SConscript +++ b/third_party/SConscript @@ -1,6 +1,4 @@ Import('env') env.Library('json11', ['json11/json11.cpp'], CCFLAGS=env['CCFLAGS'] + ['-Wno-unqualified-std-cast-call']) -env.Append(CPPPATH=[Dir('json11')]) - env.Library('kaitai', ['kaitai/kaitaistream.cpp'], CPPDEFINES=['KS_STR_ENCODING_NONE'])