mirror of https://github.com/qt/qt5.git
16 lines
462 B
CMake
16 lines
462 B
CMake
set(VCPKG_TARGET_ARCHITECTURE x86)
|
|
|
|
# Default settings of the triplet from the official vcpkg registry
|
|
set(VCPKG_CRT_LINKAGE static)
|
|
set(VCPKG_LIBRARY_LINKAGE static)
|
|
|
|
# Qt custom per-port customizations
|
|
if(PORT MATCHES "openssl")
|
|
set(VCPKG_CRT_LINKAGE dynamic)
|
|
set(VCPKG_LIBRARY_LINKAGE dynamic)
|
|
endif()
|
|
|
|
set(VCPKG_CMAKE_SYSTEM_NAME Android)
|
|
set(VCPKG_MAKE_BUILD_TRIPLET "--host=i686-linux-android")
|
|
set(VCPKG_CMAKE_CONFIGURE_OPTIONS -DANDROID_ABI=x86)
|