mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
f749405bf0
* Allow use bundled *ssl library * fix * Add submodule * Fixes * fix * fixes * fixes * fix * fix * update poco * fix warnings * fix * fix
30 lines
751 B
CMake
30 lines
751 B
CMake
if (CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64.*|AARCH64.*)")
|
|
set (ARCH_AARCH64 1)
|
|
endif ()
|
|
if (ARCH_AARCH64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "arm")
|
|
set (ARCH_ARM 1)
|
|
endif ()
|
|
if (CMAKE_LIBRARY_ARCHITECTURE MATCHES "i386")
|
|
set (ARCH_I386 1)
|
|
endif ()
|
|
if ( ( ARCH_ARM AND NOT ARCH_AARCH64 ) OR ARCH_I386)
|
|
set (ARCH_32 1)
|
|
message (WARNING "Support for 32bit platforms is highly experimental")
|
|
endif ()
|
|
if (CMAKE_SYSTEM MATCHES "Linux")
|
|
set (ARCH_LINUX 1)
|
|
endif ()
|
|
if (CMAKE_SYSTEM MATCHES "FreeBSD")
|
|
set (ARCH_FREEBSD 1)
|
|
endif ()
|
|
|
|
if (NOT MSVC)
|
|
set (NOT_MSVC 1)
|
|
endif ()
|
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
set (COMPILER_GCC 1)
|
|
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
set (COMPILER_CLANG 1)
|
|
endif ()
|