From 9e58e319124ce67ef2863d6fb1776ff561ff3cd2 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 28 Dec 2019 07:27:09 +0100 Subject: [PATCH] Remove option for tests. It's not really good testable. --- CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d75ad2..6d684f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,6 @@ list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") # Project build options. option(WITH_MAN "Compile and install manpage." YES) -option(WITH_TESTS "Compile tests." NO) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) @@ -33,8 +32,4 @@ if(WITH_MAN) add_subdirectory(man) endif() -# if(WITH_TESTS) -# add_subdirectory(tests) -# endif() - # include(cmake/packages.cmake)