From 5db696c15c1ab1772886cc3404e6abf94a33f19b Mon Sep 17 00:00:00 2001 From: Tobias Reisinger Date: Thu, 19 Sep 2019 16:12:38 +0200 Subject: [PATCH] fix: remove file copying for build --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index daf5425..283063f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,9 +58,6 @@ foreach(cspFile ${SCP_LIST}) set(VIEWSRC ${VIEWSRC} ${classname}.cc) endforeach() -configure_file("config.json" "config.json" COPYONLY) -configure_file("core.sqlite" "core.sqlite" COPYONLY) - include_directories(${CMAKE_CURRENT_SOURCE_DIR}) add_executable(core ${SRC_DIR} ${CTL_SRC} ${FILTER_SRC} ${VIEWSRC} ${PLUGIN_SRC} ${MODEL_SRC} ${HELPER_SRC})