diff options
| author | martin-s <webmaster@macside.net> | 2020-01-14 00:31:58 +0000 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2020-01-13 16:31:58 -0800 |
| commit | 299c7c730ca759ef3dee365a2ecd7c3dd39db8a6 (patch) | |
| tree | 2d34f7efe935a0a89c814bb983cb7134f6df5927 /scripts/ports.cmake | |
| parent | bdae0904c41a0ee2c5204d6449038d3b5d551726 (diff) | |
| download | vcpkg-299c7c730ca759ef3dee365a2ecd7c3dd39db8a6.tar.gz vcpkg-299c7c730ca759ef3dee365a2ecd7c3dd39db8a6.zip | |
Introduce new policy to skip post verification of dll exports (#9642)
* - Introduce new policy to skip post verification of dll exports (see issue #9641).
* - Fixed line endings.
Diffstat (limited to 'scripts/ports.cmake')
| -rw-r--r-- | scripts/ports.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/ports.cmake b/scripts/ports.cmake index cdc0bdd99..1aea1ffa3 100644 --- a/scripts/ports.cmake +++ b/scripts/ports.cmake @@ -100,6 +100,9 @@ if(CMD MATCHES "^BUILD$") if (DEFINED VCPKG_POLICY_DLLS_WITHOUT_LIBS) file(APPEND ${BUILD_INFO_FILE_PATH} "PolicyDLLsWithoutLIBs: ${VCPKG_POLICY_DLLS_WITHOUT_LIBS}\n") endif() + if (DEFINED VCPKG_POLICY_DLLS_WITHOUT_EXPORTS) + file(APPEND ${BUILD_INFO_FILE_PATH} "PolicyDLLsWithoutExports: ${VCPKG_POLICY_DLLS_WITHOUT_EXPORTS}\n") + endif() if (DEFINED VCPKG_POLICY_EMPTY_PACKAGE) file(APPEND ${BUILD_INFO_FILE_PATH} "PolicyEmptyPackage: ${VCPKG_POLICY_EMPTY_PACKAGE}\n") endif() |
