From 7836f5c4ebe5a8a46cefb7d748ba49723e0a8d64 Mon Sep 17 00:00:00 2001 From: Alan Liddell Date: Fri, 12 May 2023 11:17:25 -0400 Subject: [PATCH] bump version to 0.1.2 (#10) --- CMakeLists.txt | 2 +- cmake/cpack.cmake | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 cmake/cpack.cmake 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)