aboutsummaryrefslogtreecommitdiff
path: root/timer
diff options
context:
space:
mode:
Diffstat (limited to 'timer')
-rw-r--r--timer/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/timer/CMakeLists.txt b/timer/CMakeLists.txt
index fb300a0..55f4d79 100644
--- a/timer/CMakeLists.txt
+++ b/timer/CMakeLists.txt
@@ -15,7 +15,7 @@ add_library(timer ${SRC})
15 15
16target_include_directories(timer PUBLIC include) 16target_include_directories(timer PUBLIC include)
17 17
18target_compile_options(timer PRIVATE -Wall -Wextra) 18target_compile_options(timer PRIVATE -Wall -Wextra -Wpedantic)
19 19
20# Test 20# Test
21 21
@@ -24,4 +24,4 @@ add_executable(timer_test
24 24
25target_link_libraries(timer_test timer) 25target_link_libraries(timer_test timer)
26 26
27target_compile_options(timer_test PRIVATE -DUNIT_TEST -DNDEBUG -Wall -Wextra) 27target_compile_options(timer_test PRIVATE -DUNIT_TEST -DNDEBUG -Wall -Wextra -Wpedantic)