diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-02-19 10:04:02 -0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-02-19 10:04:02 -0800 |
| commit | 8f20e31e180641f10d6e4e945b39e29991f75db8 (patch) | |
| tree | e0628565b0eec8c0f158feb2e07e2c4d165a1787 /docs/users | |
| parent | 0e872e6bd193d0fbcd8597ee650ed097f6785407 (diff) | |
| download | vcpkg-8f20e31e180641f10d6e4e945b39e29991f75db8.tar.gz vcpkg-8f20e31e180641f10d6e4e945b39e29991f75db8.zip | |
[vcpkg-docs-triplets.md] Update triplet docs to match the qt modularization
Diffstat (limited to 'docs/users')
| -rw-r--r-- | docs/users/triplets.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users/triplets.md b/docs/users/triplets.md index 06f77e63f..eb83aeb10 100644 --- a/docs/users/triplets.md +++ b/docs/users/triplets.md @@ -42,11 +42,11 @@ Example: ```cmake set(VCPKG_LIBRARY_LINKAGE static) set(VCPKG_CRT_LINKAGE dynamic) -if(PORT STREQUAL "qt5") +if(PORT MATCHES "qt5-") set(VCPKG_LIBRARY_LINKAGE dynamic) endif() ``` -This will build `qt5` as DLLs against the dynamic CRT, but every other library as a static library (still against the dynamic CRT). +This will build all the `qt5-*` libraries as DLLs against the dynamic CRT, but every other library as a static library (still against the dynamic CRT). For an example in a real project, see https://github.com/Intelight/vcpkg/blob/master/triplets/x86-windows-mixed.cmake. |
