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
b1839c91
Commit
b1839c91
authored
Jul 20, 2016
by
Oleg Korshul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
3dParty make
parent
5c6de53d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
0 deletions
+38
-0
Common/3dParty/make.bat
Common/3dParty/make.bat
+15
-0
Common/3dParty/make.sh
Common/3dParty/make.sh
+23
-0
No files found.
Common/3dParty/make.bat
0 → 100644
View file @
b1839c91
SET
SCRIPTPATH
=
%~dp0
CD
/D
%~dp0
FOR
/f
"tokens=*"
%%i
in
(
'DIR /a:d /b *'
)
DO
(
ECHO
%%i
if
exist
%%i
/fetch
.bat
(
call
%%i
/fetch
.bat
)
if
exist
%%i
/build
.bat
(
call
%%i
/build
.bat
)
)
\ No newline at end of file
Common/3dParty/make.sh
0 → 100644
View file @
b1839c91
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
cd
"
$SCRIPTPATH
"
for
d
in
*
/
;
do
echo
"
$d
"
cd
"
$SCRIPTPATH
/
$d
"
if
[
-f
"fetch.sh"
]
then
bash
"fetch.sh"
fi
if
[
-f
"build.sh"
]
then
bash
"build.sh"
fi
cd
"
$SCRIPTPATH
"
done
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