mirror of
https://github.com/SFML/SFML.git
synced 2024-11-28 22:31:09 +08:00
The architecture (32/64 bits) is now detected only on Windows
This commit is contained in:
parent
88683504ba
commit
91705fe25c
@ -193,7 +193,7 @@ if(WINDOWS)
|
|||||||
if(ARCH_32BITS)
|
if(ARCH_32BITS)
|
||||||
install(FILES extlibs/bin/x86/libsndfile-1.dll DESTINATION bin)
|
install(FILES extlibs/bin/x86/libsndfile-1.dll DESTINATION bin)
|
||||||
install(FILES extlibs/bin/x86/openal32.dll DESTINATION bin)
|
install(FILES extlibs/bin/x86/openal32.dll DESTINATION bin)
|
||||||
else()
|
elseif(ARCH_64BITS)
|
||||||
install(FILES extlibs/bin/x64/libsndfile-1.dll DESTINATION bin)
|
install(FILES extlibs/bin/x64/libsndfile-1.dll DESTINATION bin)
|
||||||
install(FILES extlibs/bin/x64/openal32.dll DESTINATION bin)
|
install(FILES extlibs/bin/x64/openal32.dll DESTINATION bin)
|
||||||
endif()
|
endif()
|
||||||
|
@ -2,6 +2,18 @@
|
|||||||
# detect the OS
|
# detect the OS
|
||||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
||||||
set(WINDOWS 1)
|
set(WINDOWS 1)
|
||||||
|
|
||||||
|
# detect the architecture (note: this test won't work for cross-compilation)
|
||||||
|
include(CheckTypeSize)
|
||||||
|
check_type_size(void* SIZEOF_VOID_PTR)
|
||||||
|
if(${SIZEOF_VOID_PTR} EQUAL "4")
|
||||||
|
set(ARCH_32BITS 1)
|
||||||
|
elseif(${SIZEOF_VOID_PTR} EQUAL "8")
|
||||||
|
set(ARCH_64BITS 1)
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Unsupported architecture")
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
||||||
set(LINUX 1)
|
set(LINUX 1)
|
||||||
elseif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
elseif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
||||||
@ -17,25 +29,11 @@ elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|||||||
message(FATAL_ERROR "Unsupported version of OS X : ${MACOSX_VERSION_RAW}")
|
message(FATAL_ERROR "Unsupported version of OS X : ${MACOSX_VERSION_RAW}")
|
||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
else()
|
else()
|
||||||
message(FATAL_ERROR "Unsupported operating system")
|
message(FATAL_ERROR "Unsupported operating system")
|
||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# detect the architecture
|
|
||||||
# note: this test won't work for cross-compilation
|
|
||||||
include(CheckTypeSize)
|
|
||||||
check_type_size(void* SIZEOF_VOID_PTR)
|
|
||||||
if(${SIZEOF_VOID_PTR} MATCHES "^4$")
|
|
||||||
set(ARCH_32BITS 1)
|
|
||||||
elseif(${SIZEOF_VOID_PTR} MATCHES "^8$")
|
|
||||||
set(ARCH_64BITS 1)
|
|
||||||
else()
|
|
||||||
message(FATAL_ERROR "Unsupported architecture")
|
|
||||||
return()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# detect the compiler and its version
|
# detect the compiler and its version
|
||||||
# Note: on some platforms (OS X), CMAKE_COMPILER_IS_GNUCXX is true
|
# Note: on some platforms (OS X), CMAKE_COMPILER_IS_GNUCXX is true
|
||||||
# even when CLANG is used, therefore the Clang test is done first
|
# even when CLANG is used, therefore the Clang test is done first
|
||||||
|
@ -9,13 +9,13 @@ if (WINDOWS)
|
|||||||
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/libs-mingw")
|
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/libs-mingw")
|
||||||
if(ARCH_32BITS)
|
if(ARCH_32BITS)
|
||||||
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/bin/x86")
|
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/bin/x86")
|
||||||
else()
|
elseif(ARCH_64BITS)
|
||||||
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/bin/x64")
|
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/bin/x64")
|
||||||
endif()
|
endif()
|
||||||
elseif(COMPILER_MSVC)
|
elseif(COMPILER_MSVC)
|
||||||
if(ARCH_32BITS)
|
if(ARCH_32BITS)
|
||||||
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/libs-msvc/x86")
|
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/libs-msvc/x86")
|
||||||
else()
|
elseif(ARCH_64BITS)
|
||||||
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/libs-msvc/x64")
|
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/libs-msvc/x64")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
Loading…
Reference in New Issue
Block a user