cmake: do not set libsuffix=64 on MacOS. fix issue #963
This commit is contained in:
parent
75ff947ae2
commit
67487049ab
|
@ -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 "")
|
||||
|
|
Loading…
Reference in New Issue