diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-10-25 14:35:32 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-10-25 14:41:11 +0200 |
commit | 8c2089dd8117835cfbfaed2c8f50cd34e666487f (patch) | |
tree | 5954b63122b1f71903469907a76ac74e36f81ec7 /CMakeLists.txt | |
parent | 47a838f292439b9d1ce921a79341e4a7170d0810 (diff) |
Added CMake install targets and reworked wwwroot folder structure.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1de9b72..6494836 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,14 @@ cmake_minimum_required(VERSION 3.1.9) project(cpp-web) +set(CPACK_PACKAGE_CONTACT "toni@impl.cc") +set(CPACK_DEBIAN_PACKAGE_NAME "cpp-web") +set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) +set(CPACK_PACKAGE_VERSION_MAJOR 1) +set(CPACK_PACKAGE_VERSION_MINOR 0) + +include(CPack) + set(CMAKE_CXX_FLAGS "-Wall -Wextra -std=c++17") set(CMAKE_CXX_FLAGS_DEBUG "-g3 -fpic -fno-omit-frame-pointer -fno-rtti -ffunction-sections -fdata-sections -fsanitize=address -fsanitize=leak") set(CMAKE_CXX_FLAGS_RELEASE "-Os -fpic -fomit-frame-pointer -ffunction-sections -fdata-sections -flto") @@ -33,3 +41,6 @@ if(CMAKE_BUILD_TYPE MATCHES Release) set_target_properties(cpp-web PROPERTIES LINK_FLAGS "-no-pie -flto -Wl,--gc-sections -Wl,-z,norelro -Wl,--hash-style=gnu -Wl,--build-id=none") endif() target_link_libraries(cpp-web stdc++fs pthread event magic) + +install(TARGETS cpp-web RUNTIME DESTINATION bin) +install(DIRECTORY ${PROJECT_SOURCE_DIR}/wwwroot/ DESTINATION ${CMAKE_INSTALL_PREFIX}/share/cpp-web/wwwroot) |