From 9e5a9107f29af9851a8036e993e67d090945663d Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Sat, 14 Mar 2026 17:30:56 -0400 Subject: [PATCH] Remove enforced CTest verbosity It can be controlled from the command line instead, and that's better --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 053fe42a..e90fd7cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ project(rgbds DESCRIPTION "Game Boy assembly toolchain" HOMEPAGE_URL "https://rgbds.gbdev.io") -include(CTest) +include(CTest) # Note: must be in the top-level dir. # Reject in-source builds, as they may conflict with the Makefile. get_filename_component(srcdir "${CMAKE_SOURCE_DIR}" REALPATH) @@ -97,7 +97,6 @@ set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED True) add_subdirectory(src) -set(CMAKE_CTEST_ARGUMENTS "--verbose") add_subdirectory(test) if(CMAKE_BUILD_TYPE STREQUAL "Release")