diff --git a/CMakeLists.txt b/CMakeLists.txt index b3f8472..e6b21f3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,4 +15,4 @@ set(CMAKE_CXX_STANDARD 20) add_subdirectory(src) add_subdirectory(tests) -include(CPack) +include(cmake/cpack.cmake) diff --git a/cmake/cpack.cmake b/cmake/cpack.cmake new file mode 100644 index 0000000..5a49a51 --- /dev/null +++ b/cmake/cpack.cmake @@ -0,0 +1,5 @@ +SET(CPACK_PACKAGE_VERSION_MAJOR 0) +SET(CPACK_PACKAGE_VERSION_MINOR 1) +SET(CPACK_PACKAGE_VERSION_PATCH 2) + +include(CPack)