From 55eb9d22243f5a4858ed3816bddb641c5fb9b676 Mon Sep 17 00:00:00 2001 From: Lexi Mayfield Date: Sun, 3 Dec 2023 21:46:53 -0500 Subject: [PATCH] Fix clang warnings --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 65e92fe..de29421 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -42,7 +42,7 @@ endif() check_compiler_flag(CXX -Wmost W_MOST) if(W_MOST) - target_compile_options(lexio PRIVATE "-Wmost") + target_compile_options(test PRIVATE "-Wmost") endif() add_sanitizers(Catch2)