diff options
Diffstat (limited to 'vcpkg/ports/wxwidgets/fix-libs-export.patch')
| -rw-r--r-- | vcpkg/ports/wxwidgets/fix-libs-export.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vcpkg/ports/wxwidgets/fix-libs-export.patch b/vcpkg/ports/wxwidgets/fix-libs-export.patch new file mode 100644 index 0000000..63bb9d3 --- /dev/null +++ b/vcpkg/ports/wxwidgets/fix-libs-export.patch @@ -0,0 +1,21 @@ +diff --git a/build/cmake/config.cmake b/build/cmake/config.cmake
+index b359560..7504458 100644
+--- a/build/cmake/config.cmake
++++ b/build/cmake/config.cmake
+@@ -39,8 +39,14 @@ macro(wx_get_dependencies var lib)
+ else()
+ # For the value like $<$<CONFIG:DEBUG>:LIB_PATH>
+ # Or $<$<NOT:$<CONFIG:DEBUG>>:LIB_PATH>
+- string(REGEX REPLACE "^.+>:(.+)>$" "\\1" dep_name ${dep})
+- if (NOT dep_name)
++ if(dep MATCHES "^(.+>):(.+)>$")
++ if(CMAKE_BUILD_TYPE STREQUAL "Debug" AND CMAKE_MATCH_1 STREQUAL [[$<$<NOT:$<CONFIG:DEBUG>>]])
++ continue()
++ elseif(CMAKE_BUILD_TYPE STREQUAL "Release" AND CMAKE_MATCH_1 STREQUAL [[$<$<CONFIG:DEBUG>]])
++ continue()
++ endif()
++ set(dep_name "${CMAKE_MATCH_2}")
++ else()
+ set(dep_name ${dep})
+ endif()
+ endif()
|