Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
com.ccwangluo.accelerator
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sheteng
com.ccwangluo.accelerator
Commits
2ef042d5
Unverified
Commit
2ef042d5
authored
Jan 22, 2018
by
Max Lv
Committed by
GitHub
Jan 22, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1593 from chon219/fix-windows-script
fixed windows build script for overture
parents
d7ecc348
0fa97f06
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
core/build.gradle
core/build.gradle
+2
-2
core/src/overture/clean.bat
core/src/overture/clean.bat
+4
-4
core/src/overture/make.bat
core/src/overture/make.bat
+1
-1
No files found.
core/build.gradle
View file @
2ef042d5
...
@@ -38,7 +38,7 @@ android {
...
@@ -38,7 +38,7 @@ android {
task
goBuild
(
type:
Exec
)
{
task
goBuild
(
type:
Exec
)
{
if
(
Os
.
isFamily
(
Os
.
FAMILY_WINDOWS
))
{
if
(
Os
.
isFamily
(
Os
.
FAMILY_WINDOWS
))
{
executable
"cmd.exe"
executable
"cmd.exe"
args
"/c"
,
"src
/overture/
make.bat "
+
minSdkVersion
args
"/c"
,
"src
\\overture\\
make.bat "
+
minSdkVersion
}
else
{
}
else
{
executable
"sh"
executable
"sh"
args
"-c"
,
"src/overture/make.bash "
+
minSdkVersion
args
"-c"
,
"src/overture/make.bash "
+
minSdkVersion
...
@@ -48,7 +48,7 @@ task goBuild(type: Exec) {
...
@@ -48,7 +48,7 @@ task goBuild(type: Exec) {
task
goClean
(
type:
Exec
)
{
task
goClean
(
type:
Exec
)
{
if
(
Os
.
isFamily
(
Os
.
FAMILY_WINDOWS
))
{
if
(
Os
.
isFamily
(
Os
.
FAMILY_WINDOWS
))
{
executable
"cmd.exe"
executable
"cmd.exe"
args
"/c"
,
"src
/overture/
clean.bat"
args
"/c"
,
"src
\\overture\\
clean.bat"
}
else
{
}
else
{
executable
"sh"
executable
"sh"
args
"-c"
,
"src/overture/clean.bash"
args
"-c"
,
"src/overture/clean.bash"
...
...
core/src/overture/clean.bat
View file @
2ef042d5
@ECHO
OFF
@ECHO
OFF
SET
DIR
=
%
CD%
SET
DIR
=
%
~dp0
SET
DEPS
=
%DIR%
\.deps
SET
DEPS
=
%DIR%
\.deps
RD
/SQ
%DEPS%
RD
/S
/
Q
%DEPS%
RD
/SQ
%DIR%
\go\bin
RD
/S
/
Q
%DIR%
\go\bin
RD
/SQ
%DIR%
\bin
RD
/S
/
Q
%DIR%
\bin
ECHO
"Successfully clean overture"
ECHO
"Successfully clean overture"
core/src/overture/make.bat
View file @
2ef042d5
...
@@ -5,7 +5,7 @@ IF NOT DEFINED ANDROID_NDK_HOME (
...
@@ -5,7 +5,7 @@ IF NOT DEFINED ANDROID_NDK_HOME (
SET
ANDROID_NDK_HOME
=
%ANDROID_HOME%
\ndk
-bundle
SET
ANDROID_NDK_HOME
=
%ANDROID_HOME%
\ndk
-bundle
)
)
SET
DIR
=
%
CD%
SET
DIR
=
%
~dp0
SET
MIN_API
=
%
1
%
SET
MIN_API
=
%
1
%
SET
TARGET
=
%DIR%
\bin
SET
TARGET
=
%DIR%
\bin
SET
DEPS
=
%DIR%
\.deps
SET
DEPS
=
%DIR%
\.deps
...
...
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