From c626332e03782076c5f938f41c179a3de4873751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20D=C3=BCrrenberger?= Date: Mon, 20 Aug 2018 23:49:56 +0200 Subject: [PATCH] Disabled tests by default --- CMakeLists.txt | 2 +- test/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ff8aa6de4..eefd9fead 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -85,7 +85,7 @@ if(SFML_BUILD_WINDOW) endif() # add an option for building the test suite -sfml_set_option(SFML_BUILD_TEST_SUITE TRUE BOOL "TRUE to build the SFML test suite, FALSE to ignore it") +sfml_set_option(SFML_BUILD_TEST_SUITE FALSE BOOL "TRUE to build the SFML test suite, FALSE to ignore it") # macOS specific options if(SFML_OS_MACOSX) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index abfe34f2d..86dd8128e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -40,8 +40,8 @@ if(SFML_BUILD_GRAPHICS) endif() # Automatically run the tests at the end of the build -add_custom_target( runtests ALL - DEPENDS systemtest windowtest graphicstest +add_custom_target(runtests ALL + DEPENDS systemtest windowtest graphicstest ) add_custom_command(TARGET runtests COMMENT "Run tests"