From b3afb0bc636a8d30566812f0f8fbed200a38aee9 Mon Sep 17 00:00:00 2001 From: Alexander Kurbatov Date: Thu, 12 Oct 2023 22:05:16 +0300 Subject: [PATCH] refactor: Move json headers to the thirdparty folder Signed-off-by: Alexander Kurbatov --- CMakeLists.txt | 3 ++- {src => thirdparty}/json/json.hpp | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename {src => thirdparty}/json/json.hpp (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b2e5314..c30b6393 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,8 @@ endif () list(APPEND CMAKE_MODULE_PATH thirdparty/cmake) -# cpp-sc2 dependency +# Dependencies include(cpp_sc2) +include_directories(thirdparty) add_subdirectory(src) diff --git a/src/json/json.hpp b/thirdparty/json/json.hpp similarity index 100% rename from src/json/json.hpp rename to thirdparty/json/json.hpp