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
56ad6720
Commit
56ad6720
authored
Sep 02, 2013
by
Ian Craggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Product Doxygen doc
parent
19bedf93
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
27 deletions
+18
-27
build.xml
build.xml
+14
-23
DoxyfileV3AsyncAPI
doc/DoxyfileV3AsyncAPI
+2
-2
DoxyfileV3ClientAPI
doc/DoxyfileV3ClientAPI
+2
-2
No files found.
build.xml
View file @
56ad6720
...
...
@@ -182,30 +182,22 @@
<target
name=
"doc"
>
<if>
<available
file=
"
${doxygen}
"
/>
<available
file=
"
/usr/bin/doxygen
"
/>
<then>
<exec
executable=
"${doxygen}"
dir=
"${mqttclient_src}"
>
<arg
value=
"${source.folder}/mqttv3c/doc/DoxyfileV3ClientAPI"
/>
<mkdir
dir=
"${output.folder}/doc"
/>
<exec
executable=
"doxygen"
dir=
"src"
>
<arg
value=
"../doc/DoxyfileV3ClientAPI"
/>
</exec>
<mkdir
dir=
"${ship.folder}/doc/html"
/>
<copy
todir=
"${ship.folder}/doc/html"
>
<fileset
dir=
"${mqttclient_src}/MQTTClient/html"
/>
</copy>
<!-- <zip destfile="${output.folder}/doc/MQTTClient.zip">
<zipfileset dir="${mqttclient_src}/MQTTClient" />
</zip> -->
<exec
executable=
"${doxygen}"
dir=
"${mqttclient_src}"
>
<arg
value=
"${source.folder}/mqttv3c/doc/DoxyfileV3AsyncAPI"
/>
<exec
executable=
"doxygen"
dir=
"src"
>
<arg
value=
"../doc/DoxyfileV3AsyncAPI"
/>
</exec>
<mkdir
dir=
"${ship.folder}/doc/html/MQTTAsync"
/>
<copy
todir=
"${ship.folder}/doc/html/MQTTAsync"
>
<fileset
dir=
"${mqttclient_src}/MQTTAsync"
/>
</copy>
<!-- <zip destfile="${output.folder}/doc/MQTTAsync.zip">
<zipfileset dir="${mqttclient_src}/MQTTAsync" prefix="MQTTAsync/"/>
</zip> -->
<delete
dir=
"${mqttclient_src}/MQTTClient"
/>
<delete
dir=
"${mqttclient_src}/MQTTAsync"
/>
<zip
destfile=
"${output.folder}/MQTTClient_doc.zip"
>
<zipfileset
dir=
"${output.folder}/doc/MQTTClient"
/>
</zip>
<zip
destfile=
"${output.folder}/MQTTAsync_doc.zip"
>
<zipfileset
dir=
"${output.folder}/doc/MQTTAsync"
prefix=
"MQTTAsync/"
/>
</zip>
<delete
dir=
"${output.folder}/doc"
/>
</then>
<else>
<echo
message=
"doxygen is not available"
/>
...
...
@@ -232,7 +224,6 @@
</copy>
</target>
<!-- target name="full" depends="init, version, compile, test, doc, copy" -->
<target
name=
"full"
depends=
"init, version, compile, test"
/>
<target
name=
"full"
depends=
"init, version, compile, test, doc"
/>
</project>
doc/DoxyfileV3AsyncAPI
View file @
56ad6720
...
...
@@ -26,7 +26,7 @@ DOXYFILE_ENCODING = UTF-8
# identify the project. Note that if you do not use Doxywizard you need
# to put quotes around the project name if it contains spaces.
PROJECT_NAME = "
Asynchronous MQTT Client
"
PROJECT_NAME = "
Paho Asynchronous MQTT C Client Library
"
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or
...
...
@@ -52,7 +52,7 @@ PROJECT_LOGO = "../doc/pahologo.png"
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.
OUTPUT_DIRECTORY = "MQTTAsync/"
OUTPUT_DIRECTORY = "
../build/output/doc/
MQTTAsync/"
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
# 4096 sub-directories (in 2 levels) under the output directory of each output
...
...
doc/DoxyfileV3ClientAPI
View file @
56ad6720
...
...
@@ -26,7 +26,7 @@ DOXYFILE_ENCODING = UTF-8
# identify the project. Note that if you do not use Doxywizard you need
# to put quotes around the project name if it contains spaces.
PROJECT_NAME = "
MQTT Client
"
PROJECT_NAME = "
Paho MQTT C Client Library
"
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or
...
...
@@ -52,7 +52,7 @@ PROJECT_LOGO = "../doc/pahologo.png"
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.
OUTPUT_DIRECTORY = "MQTTClient/"
OUTPUT_DIRECTORY = "
../build/output/doc/
MQTTClient/"
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
# 4096 sub-directories (in 2 levels) under the output directory of each output
...
...
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