From 47fd90bb7fc4c16d24d655152f6949b53db4e379 Mon Sep 17 00:00:00 2001 From: Leonardo Grasso Date: Mon, 28 Nov 2022 16:58:20 +0100 Subject: [PATCH] chore: remove not used dependency - string-view-lite Signed-off-by: Leonardo Grasso --- CMakeLists.txt | 3 --- userspace/engine/CMakeLists.txt | 1 - userspace/falco/CMakeLists.txt | 1 - 3 files changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d3588eb4..4fb79696 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -181,9 +181,6 @@ include(cxxopts) # One TBB include(tbb) -#string-view-lite -include(DownloadStringViewLite) - if(NOT MINIMAL_BUILD) include(zlib) include(cares) diff --git a/userspace/engine/CMakeLists.txt b/userspace/engine/CMakeLists.txt index 6042a4c3..f4a33351 100644 --- a/userspace/engine/CMakeLists.txt +++ b/userspace/engine/CMakeLists.txt @@ -28,7 +28,6 @@ set(FALCO_ENGINE_SOURCE_FILES rule_loader_compiler.cpp) add_library(falco_engine STATIC ${FALCO_ENGINE_SOURCE_FILES}) -add_dependencies(falco_engine njson string-view-lite) if(USE_BUNDLED_DEPS) add_dependencies(falco_engine yamlcpp) diff --git a/userspace/falco/CMakeLists.txt b/userspace/falco/CMakeLists.txt index 8407f676..1de6658b 100644 --- a/userspace/falco/CMakeLists.txt +++ b/userspace/falco/CMakeLists.txt @@ -73,7 +73,6 @@ list(APPEND FALCO_INCLUDE_DIRECTORIES "${FALCO_EXTRA_INCLUDE_DIRS}") set( FALCO_DEPENDENCIES - string-view-lite b64 cxxopts )