mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
This allows users of development builds to (once again) run the launcher without the Windows SDK installed Signed-off-by: Seth Flynn <getchoo@tuta.io>
10 lines
392 B
CMake
10 lines
392 B
CMake
set(VCPKG_TARGET_ARCHITECTURE arm64)
|
|
set(VCPKG_CRT_LINKAGE dynamic)
|
|
set(VCPKG_LIBRARY_LINKAGE dynamic)
|
|
|
|
# NOTE: This is the only change we're making to the default target
|
|
#
|
|
# Avoid using the debug VCRUNTIME. Otherwise, this would introduce the Windows SDK
|
|
# as a requirement for testers :(
|
|
# We also don't really need the debug versions of our libraries anyways
|
|
set(VCPKG_BUILD_TYPE release)
|