1
0
mirror of synced 2024-11-12 02:00:52 +01:00

build: Fix build on macOS

This commit is contained in:
WerWolv 2023-12-09 12:23:11 +01:00
parent 09a148b8a5
commit df03ba3883

View File

@ -445,7 +445,7 @@ macro(setupCompilerFlags target)
set(IMHEX_COMMON_FLAGS "${IMHEX_COMMON_FLAGS} -Wall -Wextra -Wpedantic -Werror")
endif()
if (UNIX AND CMAKE_CXX_COMPILER_ID MATCHES "GNU")
if (UNIX AND NOT APPLE AND CMAKE_CXX_COMPILER_ID MATCHES "GNU")
set(IMHEX_COMMON_FLAGS "${IMHEX_COMMON_FLAGS} -rdynamic")
endif()