diff --git a/CMakeLists.txt b/CMakeLists.txt index 1dd414e..97438e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION "3.12") -project("HelloWorld" VERSION 0.2.0) +project("HelloWorld" VERSION 0.3.0) add_library(sse sse/sse.cpp) set_target_properties(sse PROPERTIES PUBLIC_HEADER sse/sse.hpp) diff --git a/cmake/Packaging.cmake b/cmake/Packaging.cmake index 8f25189..e86fc0f 100644 --- a/cmake/Packaging.cmake +++ b/cmake/Packaging.cmake @@ -8,4 +8,8 @@ set(CPACK_PACKAGE_CONTACT "firstname.lastname@example.com") set(CPACK_PACKAGE_MAINTAINERS "SSE lecturers ${CPACK_PACKAGE_CONTACT}") set(CPACK_PACKAGE_HOMEPAGE_URL "https://simulation-software-engineering.github.io/homepage/") +# Debian specific changes +set(CPACK_DEBIAN_FILE_NAME DEB-DEFAULT) +set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS YES) + include(CPack) \ No newline at end of file