mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-24 06:39:58 -06:00

- can't use the x86_64 one as host triplet on arm64 because building Qt fails for whatever reason. Because of course it does :D - vcpkg doesn't always like periods in triplet names so removed those
13 lines
375 B
CMake
13 lines
375 B
CMake
set(VCPKG_TARGET_ARCHITECTURE x64)
|
|
set(VCPKG_CRT_LINKAGE dynamic)
|
|
set(VCPKG_LIBRARY_LINKAGE static)
|
|
|
|
set(VCPKG_CMAKE_SYSTEM_NAME Darwin)
|
|
set(VCPKG_CMAKE_SYSTEM_VERSION 10.15)
|
|
set(VCPKG_OSX_ARCHITECTURES x86_64)
|
|
set(VCPKG_BUILD_TYPE release)
|
|
set(VCPKG_OSX_DEPLOYMENT_TARGET 10.15)
|
|
|
|
set(VCPKG_C_FLAGS -mmacosx-version-min=10.15)
|
|
set(VCPKG_CXX_FLAGS -mmacosx-version-min=10.15)
|