cmake: do not set libsuffix=64 on MacOS. fix issue #963

This commit is contained in:
Nguyen Anh Quynh 2017-07-19 22:46:38 +08:00
parent 75ff947ae2
commit 67487049ab
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ source_group("Include\\XCore" FILES ${HEADERS_XCORE})
### test library 64bit routine:
get_property(LIB64 GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS)
if ("${LIB64}" STREQUAL "TRUE")
if (NOT APPLE AND "${LIB64}" STREQUAL "TRUE")
set(LIBSUFFIX 64)
else()
set(LIBSUFFIX "")