Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
partons
core
partons-example
Commits
4bbfeddc
Commit
4bbfeddc
authored
Aug 05, 2016
by
Nabil Chouika
Browse files
refs#16
- Use command "executable" in the Ant scripts instead of the deprecated command "command".
parent
d4176e33
Changes
1
Hide whitespace changes
Inline
Side-by-side
build.xml
View file @
4bbfeddc
...
...
@@ -15,7 +15,11 @@
</target>
<target
name=
"cmake"
>
<exec
command=
"cmake -G"Unix Makefiles" ${basedir} -DCMAKE_BUILD_TYPE=Debug"
failonerror=
"true"
dir=
"${build}"
/>
<exec
executable=
"cmake"
failonerror=
"true"
dir=
"${build}"
>
<arg
value=
"-GUnix Makefiles"
/>
<arg
value=
"${basedir}"
/>
<arg
value=
"-DCMAKE_BUILD_TYPE=Debug"
/>
</exec>
</target>
<target
name=
"build"
depends=
"cmake"
>
...
...
Write
Preview
Supports
Markdown
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