We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad1e37 commit 3d70898Copy full SHA for 3d70898
cmake/DPF-plugin.cmake
@@ -989,6 +989,10 @@ function(dpf__add_plugin_specific_ui_sources NAME USE_WEB_VIEW)
989
if(APPLE)
990
target_sources("${NAME}" PRIVATE
991
"${DPF_ROOT_DIR}/distrho/DistrhoUI_macOS.mm")
992
+ if (USE_WEB_VIEW)
993
+ find_library(APPLE_WEBKIT_FRAMEWORK "WebKit")
994
+ target_link_libraries(dgl-system-libs INTERFACE "${APPLE_WEBKIT_FRAMEWORK}")
995
+ endif()
996
elseif(WIN32 AND USE_WEB_VIEW)
997
998
"${DPF_ROOT_DIR}/distrho/DistrhoUI_win32.cpp")
0 commit comments