From 7228bf8e6c11544aaecbaf9ae9078ad336f0dc46 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 9 Jan 2020 18:16:04 +0100 Subject: [PATCH] Enable cmake switches for packages. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 20ffaf9..146ff24 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,8 +20,8 @@ list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") # Project build options. option(WITH_TESTS "Compile tests." NO) option(WITH_EXAMPLES "Compile examples." NO) -# option(WITH_DEB "Prepare for the building of .deb packages." NO) -# option(WITH_RPM "Prepare for the building of .rpm packages." NO) +option(WITH_DEB "Prepare for the building of .deb packages." NO) +option(WITH_RPM "Prepare for the building of .rpm packages." NO) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON)