-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This triplet is tested in vcpkg ci via https://github.com/microsoft/vcpkg/pull/25897 | ||
set(VCPKG_TARGET_ARCHITECTURE x86) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE dynamic) | ||
|
||
## Toolchain setup | ||
set(VCPKG_CHAINLOAD_TOOLCHAIN_FILE "${CMAKE_CURRENT_LIST_DIR}/x64-win-llvm/x64-win-llvm.toolchain.cmake") | ||
set(VCPKG_LOAD_VCVARS_ENV ON) # Setting VCPKG_CHAINLOAD_TOOLCHAIN_FILE deactivates automatic vcvars setup so reenable it! | ||
|
||
if(DEFINED VCPKG_PLATFORM_TOOLSET) # Tricks vcpkg to load vcvars for a VCPKG_PLATFORM_TOOLSET which is not vc14[0-9] | ||
set(VCPKG_PLATFORM_TOOLSET ClangCL) | ||
endif() | ||
set(VCPKG_ENV_PASSTHROUGH_UNTRACKED "LLVMInstallDir;LLVMToolsVersion") # For the ClangCL toolset | ||
set(VCPKG_QT_TARGET_MKSPEC win32-clang-msvc) # For Qt5 | ||
|
||
## Policy settings | ||
set(VCPKG_POLICY_SKIP_ARCHITECTURE_CHECK enabled) | ||
set(VCPKG_POLICY_SKIP_DUMPBIN_CHECKS enabled) | ||
|
||
## Extra scripts which should not directly be hashed so that changes don't nuke the complete installed tree in manifest mode | ||
## Note: This breaks binary caching so don't apply changes to these files unkowningly. | ||
include("${CMAKE_CURRENT_LIST_DIR}/x64-win-llvm/extra_setup.cmake") | ||
include("${CMAKE_CURRENT_LIST_DIR}/x64-win-llvm/port_specialization.cmake") |