diff options
| author | nicole mazzuca <mazzucan@outlook.com> | 2020-11-12 17:31:34 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-12 17:31:34 -0800 |
| commit | d9b179fd46fc93a2f893b98eefac17a1985f423d (patch) | |
| tree | 8b4b39c6267bbb66a62b0cadd16448cd3e19f86b /scripts | |
| parent | 05170a1f609f8e4fdf1b771f960943773e110e50 (diff) | |
| download | vcpkg-d9b179fd46fc93a2f893b98eefac17a1985f423d.tar.gz vcpkg-d9b179fd46fc93a2f893b98eefac17a1985f423d.zip | |
[llvm] install tools in tools/llvm (#14399)
* [llvm] install tools in tools/llvm
* remove the giant commented out block of code
* update port-version
* hopefully fix the port?
There are still some issues, namely that the python scripts and DLLs that are copied into `tools/llvm`
are not considered to be "installed by llvm", and thus are not removed when llvm is removed
* format!
* apparently REGEX REPLACE fails if a thing doesn't match
* fix LLVM_REMOVE_EXTENSION_REGEX on windows
* actually read the cmake regex docs...
* fix the name of the variable
* turns out CMAKE_MATCH_1 is the one I want
* need to update VERSION for new policy
* stop removing debug/bin
* fix faulty merge
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/build_info.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/build_info.cmake b/scripts/build_info.cmake index 7470560c8..a6208016a 100644 --- a/scripts/build_info.cmake +++ b/scripts/build_info.cmake @@ -8,6 +8,9 @@ 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_DLLS_IN_STATIC_LIBRARY)
+ file(APPEND ${BUILD_INFO_FILE_PATH} "PolicyDLLsInStaticLibrary: ${VCPKG_POLICY_DLLS_IN_STATIC_LIBRARY}\n")
+endif()
if (DEFINED VCPKG_POLICY_MISMATCHED_NUMBER_OF_BINARIES)
file(APPEND ${BUILD_INFO_FILE_PATH} "PolicyMismatchedNumberOfBinaries: ${VCPKG_POLICY_MISMATCHED_NUMBER_OF_BINARIES}\n")
endif()
|
