fix: copy config.json to build dir
This commit is contained in:
parent
907b52160a
commit
9a44bc494e
2 changed files with 2 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -3,5 +3,3 @@ cmake-build-debug
|
||||||
.idea
|
.idea
|
||||||
|
|
||||||
sql/*.h
|
sql/*.h
|
||||||
|
|
||||||
core.sqlite
|
|
||||||
|
|
|
@ -58,6 +58,8 @@ foreach(cspFile ${SCP_LIST})
|
||||||
set(VIEWSRC ${VIEWSRC} ${classname}.cc)
|
set(VIEWSRC ${VIEWSRC} ${classname}.cc)
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
configure_file("config.json" "config.json" COPYONLY)
|
||||||
|
|
||||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
add_executable(core ${SRC_DIR} ${CTL_SRC} ${FILTER_SRC} ${VIEWSRC} ${PLUGIN_SRC} ${MODEL_SRC} ${HELPER_SRC})
|
add_executable(core ${SRC_DIR} ${CTL_SRC} ${FILTER_SRC} ${VIEWSRC} ${PLUGIN_SRC} ${MODEL_SRC} ${HELPER_SRC})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue