mirror of
https://github.com/PrismLauncher/PrismLauncher
synced 2026-04-23 09:05:03 +00: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>
11 lines
390 B
CMake
11 lines
390 B
CMake
set(VCPKG_TARGET_ARCHITECTURE x64)
|
|
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)
|