Fixes GCC build
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
d9dda8433e
commit
a99e3e2d6c
|
@ -32,13 +32,15 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|||
add_compile_options(-fconcepts)
|
||||
endif ()
|
||||
|
||||
if (CMAKE_BUILD_TYPE MATCHES Release AND NOT WINDOWS)
|
||||
# Include debug symbols in all linux builds
|
||||
message("Including debug symbols")
|
||||
add_compile_options(-g -gline-tables-only)
|
||||
if (CMAKE_BUILD_TYPE MATCHES Release)
|
||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
||||
# Include debug symbols in all linux builds
|
||||
message("Including debug symbols")
|
||||
add_compile_options(-g -gline-tables-only)
|
||||
endif ()
|
||||
# FIXME: Add debug symbols for GCC
|
||||
endif ()
|
||||
|
||||
|
||||
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
||||
find_package(Threads REQUIRED)
|
||||
|
||||
|
|
Loading…
Reference in New Issue