Skip to content

Commit

Permalink
Add desktop-app::external_webview library.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Mar 22, 2021
1 parent bd9c097 commit 52ccf5e
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ endif()
add_checked_subdirectory(ton)
add_checked_subdirectory(variant)
add_checked_subdirectory(webrtc)
add_checked_subdirectory(webview)
if (LINUX AND NOT DESKTOP_APP_DISABLE_X11_INTEGRATION)
add_checked_subdirectory(xcb)
endif()
Expand Down
39 changes: 39 additions & 0 deletions external/webview/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This file is part of Desktop App Toolkit,
# a set of libraries for developing nice desktop applications.
#
# For license and copyright information please follow this link:
# https://github.com/desktop-app/legal/blob/master/LEGAL

add_library(external_webview INTERFACE IMPORTED GLOBAL)
add_library(desktop-app::external_webview ALIAS external_webview)

add_library(external_webview_bundled INTERFACE)

set(webview_loc ${third_party_loc}/webview)

if (WIN32)
target_include_directories(external_webview_bundled
INTERFACE
${webview_loc}/script/microsoft.web.webview2.1.0.664.37/build/native/include
)

if (build_win64)
set(webview_arch x64)
else()
set(webview_arch x86)
endif()
target_link_libraries(external_webview_bundled
INTERFACE
${webview_loc}/script/microsoft.web.webview2.1.0.664.37/build/native/${webview_arch}/WebView2LoaderStatic.lib
)
endif()

target_include_directories(external_webview_bundled
INTERFACE
${webview_loc}
)

target_link_libraries(external_webview
INTERFACE
external_webview_bundled
)

0 comments on commit 52ccf5e

Please sign in to comment.