Have only FreeBSD require dynamic linking (FS#743)

Signed-off-by: Steven Oliver <oliver.steven@gmail.com>
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Steven Oliver 2012-08-27 17:27:15 -04:00 committed by Uli Schlachter
parent ec66ac876b
commit d60488f73e
1 changed files with 6 additions and 3 deletions

View File

@ -92,9 +92,12 @@ endif()
add_executable(${PROJECT_AWE_NAME}
${AWE_SRCS})
set_target_properties(${PROJECT_AWE_NAME}
PROPERTIES
LINK_FLAGS -export-dynamic)
# FreeBSD requires dynamic linking
if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
set_target_properties(${PROJECT_AWE_NAME}
PROPERTIES
LINK_FLAGS -export-dynamic)
endif()
target_link_libraries(${PROJECT_AWE_NAME}
${AWESOME_COMMON_REQUIRED_LDFLAGS}