From 13dba6527db72c4fed64008178b693c846aba8f1 Mon Sep 17 00:00:00 2001 From: WarmUpTill <19472752+WarmUpTill@users.noreply.github.com> Date: Mon, 5 May 2025 20:51:20 +0200 Subject: [PATCH] Exclude jsoncons files from release folder --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2bdbd461..4076544b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -370,7 +370,7 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/deps/jsoncons/CMakeLists.txt") OFF CACHE BOOL "" FORCE) - add_subdirectory(deps/jsoncons) + add_subdirectory(deps/jsoncons EXCLUDE_FROM_ALL) target_link_libraries(${LIB_NAME} PRIVATE jsoncons) target_compile_definitions(${LIB_NAME} PRIVATE JSONPATH_SUPPORT=1) endif()