Remove redundant CMake code

The same is done somewhere below

Signed-off-by: Nicolas Fella <nicolas.fella@gmx.de>
This commit is contained in:
Nicolas Fella 2021-04-15 00:20:19 +02:00 committed by Felix Weilbach (Rebase PR Action)
parent 63a02a988f
commit 2ad03d96ac
1 changed files with 1 additions and 6 deletions

View File

@ -5,11 +5,6 @@ project(client)
include(FeatureSummary)
if(UNIT_TESTING)
include(CTest)
enable_testing()
endif()
set(BIN_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
@ -260,8 +255,8 @@ if(BUILD_SHELL_INTEGRATION)
add_subdirectory(shell_integration)
endif()
include(CTest)
if(BUILD_TESTING)
include(CTest)
enable_testing()
add_subdirectory(test)
endif()