Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
a2fdf793
Commit
a2fdf793
authored
Nov 14, 2016
by
Alexey.Golubev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added script to build cef on windows
parent
2077c375
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
0 deletions
+38
-0
.gitignore
.gitignore
+5
-0
Common/3dParty/cef/build.bat
Common/3dParty/cef/build.bat
+1
-0
Common/3dParty/cef/fetch.bat
Common/3dParty/cef/fetch.bat
+32
-0
No files found.
.gitignore
View file @
a2fdf793
...
...
@@ -8,6 +8,11 @@ Common/3dParty/icu/win_32
Common/3dParty/icu/linux_64
Common/3dParty/icu/linux_32
Common/3dParty/icu/mac_64
Common/3dParty/cef/win_64
Common/3dParty/cef/win_32
Common/3dParty/cef/linux_64
Common/3dParty/cef/linux_32
Common/3dParty/cef/mac_64
Common/3dParty/v8/v8
Common/3dParty/v8/depot_tools
Common/3dParty/v8/win_64
...
...
Common/3dParty/cef/build.bat
0 → 100644
View file @
a2fdf793
echo
"build: OK
!
"
\ No newline at end of file
Common/3dParty/cef/fetch.bat
0 → 100644
View file @
a2fdf793
SET
SCRIPTPATH
=
%~dp0
CD
/D
%~dp0
SET
PLATFORM
=
win
SET
ARCH
=
_32
if
defined
ProgramFiles
(
x86
)
(
SET
ARCH
=
_64
)
mkdir
"
%SCRIPTPATH%%
PLATFORM
%%ARCH%
"
cd
"
%SCRIPTPATH%%
PLATFORM
%%ARCH%
"
if
exist
"cef_binary.7z"
(
echo
"cef_binary.7z already downloaded"
)
else
(
Powershell
.exe
Invoke
-WebRequest -OutFile
cef_binary
.7z
http
://d2ettrnqo7v976.cloudfront.net/cef/2454/
%PLATFORM%%
ARCH
%
/cef
_binary.7z
)
SET
UNSIP_PROGRAMM
=
"
%ProgramFiles%
\7-Zip\7z.exe"
SET
UNSIP_PROGRAMM2
=
"
%ProgramFiles
(x86)
%
\7-Zip\7z.exe"
if
exist
%UNSIP
_PROGRAMM2
%
(
SET
UNSIP_PROGRAMM
=
%UNSIP
_PROGRAMM2
%
)
if
exist
"cef_binary"
(
echo
"cef_binary.7z already extracted"
)
else
(
call
%UNSIP_PROGRAMM%
x
"cef_binary.7z"
mkdir
build
copy
cef_binary
\Release\
*
build
\
copy
cef_binary
\Resources\
*
build
\
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment