Only add debug symbols on Linux build
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
620248f329
commit
34ba9331ed
@ -3,8 +3,6 @@ project(Arbutils)
|
||||
|
||||
# Enable all warnings, and make them error when occurring.
|
||||
add_compile_options(-Wall -Wextra -Werror)
|
||||
# Include debug symbols in all builds
|
||||
add_compile_options(-g -gfull -g3)
|
||||
# We like new stuff, so set the c++ standard to c++20.
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
|
||||
@ -45,6 +43,8 @@ endif (WINDOWS)
|
||||
|
||||
set(LINKS)
|
||||
if (NOT WINDOWS)
|
||||
# Include debug symbols in all linux builds
|
||||
add_compile_options(-g -gfull -g3)
|
||||
set(LINKS ${LINKS} -ldw)
|
||||
endif()
|
||||
# If we want to link the C and C++ library statically, link those as well.
|
||||
|
Loading…
x
Reference in New Issue
Block a user