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
fb8b7d9a
Commit
fb8b7d9a
authored
Jul 14, 2016
by
Oleg Korshul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
boost fetch & build windows (not worked)
parent
93991cfa
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
0 deletions
+53
-0
Common/3dParty/boost/build.bat
Common/3dParty/boost/build.bat
+37
-0
Common/3dParty/boost/fetch.bat
Common/3dParty/boost/fetch.bat
+16
-0
No files found.
Common/3dParty/boost/build.bat
0 → 100644
View file @
fb8b7d9a
SET
SCRIPTPATH
=
%~dp0
CD
/D
%~dp0
SET
platform
=
win_32
if
defined
ProgramFiles
(
x86
)
(
SET
platform
=
win_64
)
outputdir
=
"
%SCRIPTPATH%
/boost_1_58_0/build/
%platform%
"
echo
"
%outputdir%
"
CD
"
%SCRIPTPATH%
/boost_1_58_0"
call
.\bootstrap.bat
-
-with-libraries
=
filesystem
,
system
SET
folder
=
build
/
%platform%
if
exist
"
%folder%
"
(
RMDIR
"
%folder%
"
/S /Q
)
mkdir
build
mkdir
%folder%
mkdir
%folder%
/static
mkdir
%folder%
/static
_fpic
mkdir
%folder%
/shared
.\b2
-
-clean
.\bjam
link
=
static
XCOPY
stage
\lib\
*
"
%folder%
\static\"
.\b2
-
-clean
.\bjam
link
=
static
cxxflags
=
-fPIC
XCOPY
stage
\lib\
*
"
%folder%
\static_fpic\"
.\b2
-
-clean
.\bjam
link
=
shared
XCOPY
stage
\lib\
*
"
%folder%
\shared\"
Common/3dParty/boost/fetch.bat
0 → 100644
View file @
fb8b7d9a
SET
SCRIPTPATH
=
%~dp0
CD
/D
%~dp0
if
exist
"
%SCRIPTPATH%
/boost_1_58_0.7z"
(
echo
"boost already downloaded"
)
else
(
Powershell
.exe
Invoke
-WebRequest -OutFile
boost_1_58_0
.7z
http
://freefr.dl.sourceforge.net/project/boost/boost/1.58.0/boost_1_58_0.7z
)
if
exist
"
%SCRIPTPATH%
/boost_1_58_0/"
(
echo
"boost already extracted"
)
else
(
call
"C:\Program Files\7-Zip\7z.exe"
x
"
%SCRIPTPATH%
/boost_1_58_0.7z"
-o
"
%SCRIPTPATH%
/"
)
pause
\ No newline at end of file
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