mirror of
https://github.com/cemu-project/vcpkg.git
synced 2024-11-24 11:49:41 +00:00
9cc9978c5b
* add vcpkg_target_architecture to vcpkg_configure_cmake * modify shogun and thrift * update glbinding
28 lines
1.2 KiB
CMake
28 lines
1.2 KiB
CMake
if(NOT _VCPKG_LINUX_TOOLCHAIN)
|
|
set(_VCPKG_LINUX_TOOLCHAIN 1)
|
|
if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux")
|
|
set(CMAKE_CROSSCOMPILING OFF CACHE BOOL "")
|
|
endif()
|
|
set(CMAKE_SYSTEM_NAME Linux CACHE STRING "")
|
|
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
|
|
set(CMAKE_SYSTEM_PROCESSOR x86_64 CACHE STRING "")
|
|
endif()
|
|
|
|
get_property( _CMAKE_IN_TRY_COMPILE GLOBAL PROPERTY IN_TRY_COMPILE )
|
|
if(NOT _CMAKE_IN_TRY_COMPILE)
|
|
string(APPEND CMAKE_C_FLAGS_INIT " -fPIC ${VCPKG_C_FLAGS} ")
|
|
string(APPEND CMAKE_CXX_FLAGS_INIT " -fPIC ${VCPKG_CXX_FLAGS} ")
|
|
string(APPEND CMAKE_C_FLAGS_DEBUG_INIT " ${VCPKG_C_FLAGS_DEBUG} ")
|
|
string(APPEND CMAKE_CXX_FLAGS_DEBUG_INIT " ${VCPKG_CXX_FLAGS_DEBUG} ")
|
|
string(APPEND CMAKE_C_FLAGS_RELEASE_INIT " ${VCPKG_C_FLAGS_RELEASE} ")
|
|
string(APPEND CMAKE_CXX_FLAGS_RELEASE_INIT " ${VCPKG_CXX_FLAGS_RELEASE} ")
|
|
|
|
string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT " ${VCPKG_LINKER_FLAGS} ")
|
|
string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT " ${VCPKG_LINKER_FLAGS} ")
|
|
if(VCPKG_CRT_LINKAGE STREQUAL "static")
|
|
string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT "-static ")
|
|
string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT "-static ")
|
|
endif()
|
|
endif()
|
|
endif()
|