-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge #81: [CL] feat(CEF): CEF integration, new Chat
- Loading branch information
Showing
65 changed files
with
38,963 additions
and
17,783 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -223,3 +223,5 @@ cmake-build-debug/ | |
OSS13 Client.exe | ||
OSS13 Server.exe | ||
python*.dll | ||
/Resources/Browser | ||
/External/cef/windows-bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
set tools_path=%1 | ||
set project_path=%2 | ||
set cef_version=cef_binary_88.2.9+g5c8711a+chromium-88.0.4324.182_windows64 | ||
|
||
cd %tools_path% | ||
if not errorlevel 0 goto :EOF | ||
|
||
if not exist "%cef_version%.tar.bz2" ( | ||
curl.exe -o %cef_version%.tar.bz2 "https://cef-builds.spotifycdn.com/%cef_version%.tar.bz2" | ||
if not errorlevel 0 goto :EOF | ||
) | ||
|
||
7z.exe x %cef_version%.tar.bz2 -aoa | ||
if not errorlevel 0 goto :EOF | ||
|
||
7z.exe x %cef_version%.tar -aoa | ||
if not errorlevel 0 goto :EOF | ||
|
||
robocopy /e %cef_version% %project_path%/External/cef/windows-bin | ||
if not errorlevel 1 goto :EOF & rem 1 - is success code of robocopy | ||
|
||
cd %project_path%/External/cef/windows-bin | ||
if not errorlevel 0 goto :EOF | ||
|
||
cmake -G"Visual Studio 16 2019" | ||
if not errorlevel 0 goto :EOF | ||
|
||
msbuild.exe libcef_dll_wrapper\libcef_dll_wrapper.vcxproj /property:Configuration=Release /property:Platform=x64 | ||
msbuild.exe libcef_dll_wrapper\libcef_dll_wrapper.vcxproj /property:Configuration=Debug /property:Platform=x64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.