Fixes GCC build
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2022-03-11 11:32:44 +01:00
parent 2bf12ab879
commit be81082588
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 6 additions and 3 deletions

View File

@ -32,9 +32,12 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
endif ()
if (CMAKE_BUILD_TYPE MATCHES Release)
# Include debug symbols in all linux builds
message("Including debug symbols")
add_compile_options(-g -gline-tables-only)
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 ()
# Grab all cpp and hpp files in our source directories.