From d8af10c16a41cf7607f5c6d2354e5f6b73b3ed36 Mon Sep 17 00:00:00 2001 From: Erik Corry Date: Sun, 14 Jan 2024 17:21:12 +0100 Subject: [PATCH] Give -C fish to cmake command --- Makefile | 2 +- tests/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 37fe6a1..6af0541 100644 --- a/Makefile +++ b/Makefile @@ -20,4 +20,4 @@ test: install-pkgs rebuild-cmake .PHONY: rebuild-cmake rebuild-cmake: mkdir -p build - cmake -B build + cmake -B build -DCMAKE_BUILD_TYPE=fish diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 7ebf79c..4ed0471 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -21,7 +21,7 @@ ProcessorCount(NUM_CPU) add_custom_target( check - COMMAND ${CMAKE_CTEST_COMMAND} -C default -j${NUM_CPU} -T test --output-on-failure + COMMAND ${CMAKE_CTEST_COMMAND} -C fish -j${NUM_CPU} -T test --output-on-failure USES_TERMINAL )