add rdynamic to the linux build options

This appears to be necessary for debug symbols to show in the crash handler.
This commit is contained in:
itsmattkc
2020-04-29 03:57:49 +10:00
parent 877e8d3afc
commit 366945fd29
+8
View File
@@ -107,6 +107,14 @@ else()
)
endif()
if(UNIX AND NOT APPLE)
target_compile_options(
${OLIVE_TARGET}
PRIVATE
-rdynamic
)
endif()
# Set include directories
target_include_directories(
${OLIVE_TARGET}