File tree 4 files changed +15
-6
lines changed
4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
- [submodule "CefViewCore "]
2
- path = CefViewCore
3
- url = https://github.com/CefView/CefViewCore
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ option(BUILD_STATIC "Build QCefView as static library" OFF)
9
9
option (USE_SANDBOX "Enable CEF Sandbox" OFF )
10
10
option (STATIC_CRT "Use MultiThreaded linkage for MSVC" OFF )
11
11
12
+ # set(CEF_SDK_VERSION "109.1.18+gf1c41e4+chromium-109.0.5414.120")
13
+ set (CEF_SDK_VERSION "113.3.1+g525fa10+chromium-113.0.5672.128" )
14
+
12
15
list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake" )
13
16
14
17
get_directory_property (QCefView_HAS_PARENT_DIRECTORY PARENT_DIRECTORY )
@@ -117,8 +120,7 @@ if(NOT QCefView_HAS_PARENT_DIRECTORY)
117
120
endif ()
118
121
119
122
# Include CefViewCore
120
- add_subdirectory (CefViewCore)
121
- set_target_properties (CefViewCore PROPERTIES FOLDER core)
123
+ add_subdirectory (core)
122
124
123
125
foreach (CefViewWingTarget ${CefViewCore_HELPER_APP_TARGETS} )
124
126
set_target_properties (${CefViewWingTarget} PROPERTIES FOLDER core)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ include (FetchContent)
2
+
3
+ FetchContent_Declare(
4
+ CefViewCore
5
+ GIT_REPOSITORY https://github.com/CefView/CefViewCore.git
6
+ GIT_TAG c79fb7f5fe1e697dca3a501570daf30e794ceaeb
7
+ )
8
+
9
+ FetchContent_MakeAvailable(CefViewCore)
10
+
11
+ set_target_properties (CefViewCore PROPERTIES FOLDER core)
You can’t perform that action at this time.
0 commit comments