From 8ef9b81ad0ea9a12588316bce969cc206faee452 Mon Sep 17 00:00:00 2001 From: L-Super <40905056+L-Super@users.noreply.github.com> Date: Sun, 23 Apr 2023 20:59:55 +0800 Subject: [PATCH 1/4] Update readme.md Add git clone method --- readme.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index a70e0b50..f336784c 100644 --- a/readme.md +++ b/readme.md @@ -14,7 +14,10 @@ QCefView is a Qt based QWidget which encapsulates [CEF](https://bitbucket.org/ch **OSR** = Offscreen Rendering Mode **NCW** = Native Child Window Mode - +### Download +``` +git clone --recursive git@github.com:CefView/QCefView.git +``` # Note For Debugging With xCode From fe89a8a75694b5426f6572fec72329e6c6680c97 Mon Sep 17 00:00:00 2001 From: L-Super <40905056+L-Super@users.noreply.github.com> Date: Sun, 23 Apr 2023 21:01:20 +0800 Subject: [PATCH 2/4] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f336784c..a6f9c7c4 100644 --- a/readme.md +++ b/readme.md @@ -16,7 +16,7 @@ QCefView is a Qt based QWidget which encapsulates [CEF](https://bitbucket.org/ch **NCW** = Native Child Window Mode ### Download ``` -git clone --recursive git@github.com:CefView/QCefView.git +git clone --recursive https://github.com/CefView/QCefView.git ``` # Note For Debugging With xCode From 863ec9f144a57da8b6ff67df0f9b1e29796e938c Mon Sep 17 00:00:00 2001 From: L-Super <40905056+L-Super@users.noreply.github.com> Date: Sun, 23 Apr 2023 21:50:57 +0800 Subject: [PATCH 3/4] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index a6f9c7c4..32709a26 100644 --- a/readme.md +++ b/readme.md @@ -14,7 +14,7 @@ QCefView is a Qt based QWidget which encapsulates [CEF](https://bitbucket.org/ch **OSR** = Offscreen Rendering Mode **NCW** = Native Child Window Mode -### Download +### Clone With Submodule ``` git clone --recursive https://github.com/CefView/QCefView.git ``` From 4197d1ae24478d8bb3c84133146af39363bc2f16 Mon Sep 17 00:00:00 2001 From: L-Super <40905056+L-Super@users.noreply.github.com> Date: Mon, 24 Apr 2023 17:39:11 +0800 Subject: [PATCH 4/4] fixed error words --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d2b59f34..0fa4ae79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -85,7 +85,7 @@ endif() # Config the QT package # ############################################################## include(QtConfig.cmake) -message(STATUS "Qt SKD dir: " ${QT_SDK_DIR}) +message(STATUS "Qt SDK dir: " ${QT_SDK_DIR}) set(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} ${QT_SDK_DIR}) find_package(QT NAMES Qt6 Qt5 COMPONENTS Core Gui Widgets REQUIRED) find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Gui Widgets REQUIRED)