diff options
| author | Felix Morgner <fmorgner@hsr.ch> | 2018-12-04 14:15:40 +0100 |
|---|---|---|
| committer | Felix Morgner <fmorgner@hsr.ch> | 2018-12-04 14:15:40 +0100 |
| commit | ed38912d7ced901356cfb78321e8850465f72c36 (patch) | |
| tree | 34f6db285c7a8547ed7707fdaf4a76b131a13548 /CMakeLists.txt | |
| parent | 2a066760056a2a65015d49a4f78b8c349a145ea3 (diff) | |
| download | wanda-ed38912d7ced901356cfb78321e8850465f72c36.tar.xz wanda-ed38912d7ced901356cfb78321e8850465f72c36.zip | |
build: rename core library to 'wanda'
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2057910..6326c05 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,10 +48,10 @@ set(WANDA_CORE_LIBRARIES "Threads::Threads" ) -add_library("core" ${WANDA_CORE_SOURCES} ${WANDA_CORE_HEADERS}) -target_link_libraries("core" ${WANDA_CORE_LIBRARIES}) -set_target_properties("core" PROPERTIES PUBLIC_HEADER "${WANDA_CORE_HEADERS}") -install(TARGETS "core" ARCHIVE DESTINATION "lib" PUBLIC_HEADER DESTINATION "include") +add_library("wanda" ${WANDA_CORE_SOURCES} ${WANDA_CORE_HEADERS}) +target_link_libraries("wanda" ${WANDA_CORE_LIBRARIES}) +set_target_properties("wanda" PROPERTIES PUBLIC_HEADER "${WANDA_CORE_HEADERS}") +install(TARGETS "wanda" ARCHIVE DESTINATION "lib" PUBLIC_HEADER DESTINATION "include") ##### Wanda Daemon ##### @@ -71,7 +71,7 @@ set(WANDA_DAEMON_HEADERS ) set(WANDA_DAEMON_LIBRARIES - "core" + "wanda" "CONAN_PKG::clara" "SYSTEM::GIO" ) @@ -92,8 +92,8 @@ set(WANDA_CONTROLLER_HEADERS ) set(WANDA_CONTROLLER_LIBRARIES + "wanda" "CONAN_PKG::clara" - "core" ) add_executable("wandac" ${WANDA_CONTROLLER_SOURCES} ${WANDA_CONTROLLER_HEADERS}) |
