aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libui/003-fix-system-link.patch
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/libui/003-fix-system-link.patch
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/libui/003-fix-system-link.patch')
-rw-r--r--vcpkg/ports/libui/003-fix-system-link.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/vcpkg/ports/libui/003-fix-system-link.patch b/vcpkg/ports/libui/003-fix-system-link.patch
new file mode 100644
index 0000000..42dd23c
--- /dev/null
+++ b/vcpkg/ports/libui/003-fix-system-link.patch
@@ -0,0 +1,17 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index a23b84d..9892dfc 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -172,6 +172,12 @@ if(BUILD_SHARED_LIBS)
+ target_link_libraries(libui
+ PRIVATE ${_LIBUI_LIBS})
+ endif()
++
++if (APPLE)
++ find_library(Foundation Foundation)
++ find_library(AppKit AppKit)
++ target_link_libraries(libui PUBLIC $<$<PLATFORM_ID:Darwin>:${Foundation};${AppKit}>)
++endif()
+ # TODO INTERFACE libs don't inherit to grandhcildren?
+ # on Windows the linker for static libraries is different; don't give it the flags
+ if(BUILD_SHARED_LIBS)