mirror of
https://github.com/microsoft/terminal.git
synced 2026-02-03 18:17:40 -06:00
12 lines
408 B
CMake
12 lines
408 B
CMake
# Same as the official arm64-windows-static triplet
|
|
set(VCPKG_TARGET_ARCHITECTURE arm64)
|
|
set(VCPKG_CRT_LINKAGE static)
|
|
set(VCPKG_LIBRARY_LINKAGE static)
|
|
|
|
# ...but with explicit platform toolset, so that future toolsets
|
|
# aren't automatically picked up (it defaults to the latest one).
|
|
set(VCPKG_PLATFORM_TOOLSET v143)
|
|
|
|
set(VCPKG_CXX_FLAGS /fsanitize=address)
|
|
set(VCPKG_C_FLAGS /fsanitize=address)
|