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 bff2c7ea3b
commit 1acc818cec
1 changed files with 6 additions and 3 deletions

View File

@ -94,9 +94,12 @@ add_executable(${PROJECT_AWE_NAME}
${AWE_SRCS}
${BUILD_DIR}/common/tokenize.c)
# 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}