From 2adb38bef0939f6ee96ac3ca19fe3bd2602e6819 Mon Sep 17 00:00:00 2001 From: GPayne Date: Wed, 13 Apr 2022 20:23:12 -0600 Subject: [PATCH] Add the windows processhelper for use in linux build --- modules/webbrowser/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/webbrowser/CMakeLists.txt b/modules/webbrowser/CMakeLists.txt index eeb1887cc2..2d0a209108 100644 --- a/modules/webbrowser/CMakeLists.txt +++ b/modules/webbrowser/CMakeLists.txt @@ -137,6 +137,9 @@ if (OS_MACOSX) list(APPEND WEBBROWSER_HELPER_SOURCES src/processhelpermac.cpp) endif() set(WEBBROWSER_HELPER_SOURCES_WINDOWS src/processhelperwindows.cpp) +if (OS_LINUX) + list(APPEND WEBBROWSER_HELPER_SOURCES src/processhelperwindows.cpp) +endif() APPEND_PLATFORM_SOURCES(WEBBROWSER_HELPER_SOURCES) set(WEBBROWSER_RESOURCES_MAC_SOURCES_MACOSX @@ -217,7 +220,6 @@ if (OS_LINUX) # Logical target used to link the libcef library. add_cef_logical_target("libcef_lib" "${CEF_LIB_DEBUG}" "${CEF_LIB_RELEASE}") target_link_libraries(${CEF_HELPER_TARGET} libcef_lib libcef_dll_wrapper ${CEF_STANDARD_LIBS}) - # Add the custom manifest files to the executable. endif (OS_LINUX) set_property(TARGET ${CEF_HELPER_TARGET} PROPERTY FOLDER "Helper")