Skip to content

Commit 60edfec

Browse files
Fixed flags on clang
1 parent d6671df commit 60edfec

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ cmake_minimum_required(VERSION 4.0)
33
project(SlowGrid)
44
set(CMAKE_CXX_STANDARD 23)
55

6-
add_compile_options("-fconcepts-diagnostics-depth=2")
6+
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
7+
add_compile_options("-fconcepts-diagnostics-depth=100")
8+
endif()
79

810
### Subdirectories ###
911
add_subdirectory(Logger)

0 commit comments

Comments
 (0)