diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/pcre2/no-static-suffix.patch | |
Diffstat (limited to 'vcpkg/ports/pcre2/no-static-suffix.patch')
| -rw-r--r-- | vcpkg/ports/pcre2/no-static-suffix.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/vcpkg/ports/pcre2/no-static-suffix.patch b/vcpkg/ports/pcre2/no-static-suffix.patch new file mode 100644 index 0000000..4c81e96 --- /dev/null +++ b/vcpkg/ports/pcre2/no-static-suffix.patch @@ -0,0 +1,33 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 523bdcb..9d5d1a4 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -942,8 +942,8 @@ if(PCRE2_BUILD_PCRE2_8) + list(APPEND TARGETS pcre2-posix-static) + + if(MSVC) +- set_target_properties(pcre2-8-static PROPERTIES OUTPUT_NAME pcre2-8-static) +- set_target_properties(pcre2-posix-static PROPERTIES OUTPUT_NAME pcre2-posix-static) ++ set_target_properties(pcre2-8-static PROPERTIES OUTPUT_NAME pcre2-8) ++ set_target_properties(pcre2-posix-static PROPERTIES OUTPUT_NAME pcre2-posix) + else() + set_target_properties(pcre2-8-static PROPERTIES OUTPUT_NAME pcre2-8) + set_target_properties(pcre2-posix-static PROPERTIES OUTPUT_NAME pcre2-posix) +@@ -1049,7 +1049,7 @@ if(PCRE2_BUILD_PCRE2_16) + list(APPEND TARGETS pcre2-16-static) + + if(MSVC) +- set_target_properties(pcre2-16-static PROPERTIES OUTPUT_NAME pcre2-16-static) ++ set_target_properties(pcre2-16-static PROPERTIES OUTPUT_NAME pcre2-16) + else() + set_target_properties(pcre2-16-static PROPERTIES OUTPUT_NAME pcre2-16) + endif() +@@ -1127,7 +1127,7 @@ if(PCRE2_BUILD_PCRE2_32) + list(APPEND TARGETS pcre2-32-static) + + if(MSVC) +- set_target_properties(pcre2-32-static PROPERTIES OUTPUT_NAME pcre2-32-static) ++ set_target_properties(pcre2-32-static PROPERTIES OUTPUT_NAME pcre2-32) + else() + set_target_properties(pcre2-32-static PROPERTIES OUTPUT_NAME pcre2-32) + endif() |