Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
paho.mqtt.c
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eclipse
paho.mqtt.c
Commits
8d96bed7
Commit
8d96bed7
authored
Feb 14, 2014
by
Ian Craggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the new build names, and add a directory for each build
parent
523e3bae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
11 deletions
+28
-11
build.xml
build.xml
+28
-11
No files found.
build.xml
View file @
8d96bed7
...
...
@@ -139,10 +139,6 @@
</fileset>
</copy>
<zip
destfile=
"${output.folder}/paho-client-mqtt-c.zip"
>
<zipfileset
dir=
"${output.folder}"
includes=
"*.so,include/*,MQTTVersion,samples/*"
/>
</zip>
</then>
<elseif>
<os
family=
"windows"
/>
...
...
@@ -237,18 +233,18 @@
</target>
<target
name=
"runAtest"
>
<exec
executable=
"./${aTest}"
failonerror=
"true"
dir=
"${output.folder}"
>
<exec
executable=
"./${aTest}"
failonerror=
"true"
dir=
"${output.folder}
/test
"
>
<arg
value=
"--connection"
/>
<arg
value=
"tcp://${test.hostname}:18883"
/>
<env
key=
"LD_LIBRARY_PATH"
value=
"."
/>
<env
key=
"LD_LIBRARY_PATH"
value=
".
.
"
/>
</exec>
</target>
<target
name=
"runSSLtest"
>
<exec
executable=
"./${aTest}"
failonerror=
"true"
dir=
"${output.folder}"
>
<exec
executable=
"./${aTest}"
failonerror=
"true"
dir=
"${output.folder}
/test
"
>
<arg
value=
"--hostname"
/>
<arg
value=
"${test.hostname}"
/>
<env
key=
"LD_LIBRARY_PATH"
value=
"."
/>
<env
key=
"LD_LIBRARY_PATH"
value=
".
.
"
/>
</exec>
</target>
...
...
@@ -277,13 +273,34 @@
</if>
</target>
<target
name=
"build"
>
<if>
<os
family=
"unix"
/>
<then>
<!-- display gcc version -->
<exec
executable=
"gcc"
failonerror=
"true"
>
<arg
line=
"-v"
/>
</exec>
<if>
<available
file=
"/usr/bin/make"
/>
<then>
<exec
executable=
"make"
dir=
"."
/>
</then>
</if>
<zip
destfile=
"${output.folder}/paho-client-mqtt-c.zip"
>
<zipfileset
dir=
"${output.folder}"
includes=
"libpaho*,include/*,MQTTVersion,samples/*"
/>
</zip>
</then>
</if>
</target>
<target
name=
"copy"
>
<if>
<available
file=
"/shared/technology"
/>
<then>
<mkdir
dir=
"/shared/technology/paho/C"
/>
<mkdir
dir=
"/shared/technology/paho/C
/${build.level}
"
/>
<echo
message=
"Copying the build output to /shared"
/>
<copy
overwrite=
"true"
todir=
"/shared/technology/paho/C"
>
<copy
overwrite=
"true"
todir=
"/shared/technology/paho/C
${build.level}
"
>
<fileset
dir=
"${output.folder}"
>
<include
name=
"*.zip"
/>
</fileset>
...
...
@@ -292,6 +309,6 @@
</if>
</target>
<target
name=
"full"
depends=
"init, version,
compile
, test, doc, copy"
/>
<target
name=
"full"
depends=
"init, version,
build
, test, doc, copy"
/>
</project>
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