We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c608bc3 commit 4b959feCopy full SHA for 4b959fe
thirdparty/CMakeLists.txt
@@ -1,10 +1,16 @@
1
include(FetchContent)
2
3
+if(NOT CEFVIEW_CORE_VERSION)
4
+ set(DEFAULT_CEFVIEW_CORE_VERSION "bb1cbae4bce755e88bb89fea3c5ab31e47b44b65")
5
+ set(CEFVIEW_CORE_VERSION ${DEFAULT_CEFVIEW_CORE_VERSION})
6
+ message(STATUS "CEFVIEW_CORE_VERSION not set, use default value:${CEFVIEW_CORE_VERSION}")
7
+endif()
8
+
9
# fetch CefViewCore project
10
FetchContent_Declare(
11
CefViewCore
12
GIT_REPOSITORY https://github.com/CefView/CefViewCore.git
- GIT_TAG bb1cbae4bce755e88bb89fea3c5ab31e47b44b65
13
+ GIT_TAG ${CEFVIEW_CORE_VERSION}
14
)
15
16
# set CEF version to be used
0 commit comments