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
numa
Commits
ad1bc1a7
Commit
ad1bc1a7
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
a671bcc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
build.xml
View file @
ad1bc1a7
...
...
@@ -14,7 +14,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