Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic-graph
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Olivier Stasse
dynamic-graph
Commits
aa1d4e23
Commit
aa1d4e23
authored
14 years ago
by
Thomas Moulard
Browse files
Options
Downloads
Patches
Plain Diff
Add man pages.
parent
a1fb4793
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/CMakeLists.txt
+65
-24
65 additions, 24 deletions
doc/CMakeLists.txt
doc/dg-shell-plugin.pod.in
+26
-0
26 additions, 0 deletions
doc/dg-shell-plugin.pod.in
doc/dg-shell.pod.in
+31
-0
31 additions, 0 deletions
doc/dg-shell.pod.in
with
122 additions
and
24 deletions
doc/CMakeLists.txt
+
65
−
24
View file @
aa1d4e23
#
# Copyright 2010, Olivier Stasse, JRL, CNRS/AIST
# Copyright
#
#
# This file is part of dynamic-graph.
# dynamic-graph is free software: you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation, either version 3 of
# the License, or (at your option) any later version.
#
# dynamic-graph is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Lesser Public License for more details. You should have
# received a copy of the GNU Lesser General Public License along with
# dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
# Configure package.dox file
# MANPAGE
CONFIGURE_FILE
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/package.dox.cmake
# -------
${
CMAKE_CURRENT_BINARY_DIR
}
/package.dox
#
)
# Generate a pod man page from a template, then
# generate the man page and compress it.
# This macro also adds the installation rules.
#
MACRO
(
MANPAGE NAME
)
FIND_PROGRAM
(
POD2MAN pod2man
)
CONFIGURE_FILE
(
${
NAME
}
.pod.in
${
NAME
}
.pod @ONLY
)
ADD_CUSTOM_COMMAND
(
OUTPUT
${
NAME
}
.1
COMMAND
${
POD2MAN
}
--section=1
--center=
"LOCAL USER COMMANDS"
--release
${
PROJECT_NAME
}
${
NAME
}
.pod
>
${
NAME
}
.1
DEPENDS
${
BUILD_DIR
}
/
${
NAME
}
.pod
)
ADD_CUSTOM_COMMAND
(
OUTPUT
${
CMAKE_CURRENT_BINARY_DIR
}
/html/index.html
ADD_CUSTOM_COMMAND
(
COMMAND
${
DOXYGEN_EXECUTABLE
}
\"
${
CMAKE_CURRENT_BINARY_DIR
}
/package.dox\"
OUTPUT
${
NAME
}
.1.gz
)
COMMAND gzip -c
${
NAME
}
.1 >
${
NAME
}
.1.gz
DEPENDS
${
BUILD_DIR
}
/
${
NAME
}
.1
)
INSTALL
(
FILES
${
BUILD_DIR
}
/
${
NAME
}
.1.gz DESTINATION share/man/man1
)
ENDMACRO
(
MANPAGE
)
ADD_CUSTOM_TARGET
(
documentation ALL
DEPENDS
${
CMAKE_CURRENT_BINARY_DIR
}
/html/index.html
)
#
# Install html documentation
#
# html files
SET
(
BUILD_DIR
${
CMAKE_BINARY_DIR
}
/doc
)
INSTALL
(
DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
/html
DESTINATION share/doc/dynamic-graph
)
SET
(
DOCDIR share/doc/
${
PROJECT_NAME
}
)
SET
(
HTMLDIR
${
DOCDIR
}
/html
)
# Add `doc' target.
ADD_CUSTOM_TARGET
(
doc ALL
DEPENDS html/index.html dg-coshell.1.gz
)
# Generate Doxygen configuration file.
CONFIGURE_FILE
(
package.dox.cmake package.dox
)
# Generating the Doxygen documentation
ADD_CUSTOM_COMMAND
(
OUTPUT html/index.html
COMMAND
${
DOXYGEN_EXECUTABLE
}
package.dox
COMMENT Generating Doxygen documentation
)
# Doxygen documentation installation rules.
INSTALL
(
DIRECTORY
${
BUILD_DIR
}
/html DESTINATION
${
DOCDIR
}
)
INSTALL
(
FILES
${
BUILD_DIR
}
/
${
PROJECT_NAME
}
.doxytag DESTINATION
${
HTMLDIR
}
)
INSTALL
(
DIRECTORY pictures DESTINATION
${
HTMLDIR
}
)
# doxytag
INSTALL
(
FILES
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
PROJECT_NAME
}
.doxytag
DESTINATION share/doc/dynamic-graph/html
)
#
pictures
#
Man page generation.
INSTALL
(
DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
/pictures
MANPAGE
(
dg-shell
)
DESTINATION share/doc/dynamic-graph/html
)
MANPAGE
(
dg-shell-plugin
)
This diff is collapsed.
Click to expand it.
doc/dg-shell-plugin.pod.in
0 → 100644
+
26
−
0
View file @
aa1d4e23
=head1 NAME
dg-shell-plugin - Stack of tasks shell with all plug-ins loaded
=head1 SYNOPSIS
dg-shell-plugin
=head1 DESCRIPTION
Start the stack of tasks with all core plug-ins loaded.
=head1 AUTHORS
This software has been developed at CNRS/AIST and LAAS-CNRS laboratories.
See <@CMAKE_INSTALL_PREFIX@/share/doc/libdg-middleware-dev/AUTHORS> to
see the list of all contributors.
=head1 SEE ALSO
dg-shell(1)
See also <@PROJECT_URL@> for additional resources.
This diff is collapsed.
Click to expand it.
doc/dg-shell.pod.in
0 → 100644
+
31
−
0
View file @
aa1d4e23
=head1 NAME
dg-shell - Stack of tasks shell
=head1 SYNOPSIS
dg-shell [FILE]
=head1 DESCRIPTION
Start the stack of tasks and provides to the user an interactive shell
to control the data-flow.
Optionally, a file which will be interpreted at start-up can be given
to the program.
=head1 AUTHORS
This software has been developed at CNRS/AIST and LAAS-CNRS laboratories.
See <@CMAKE_INSTALL_PREFIX@/share/doc/libdg-middleware-dev/AUTHORS> to
see the list of all contributors.
=head1 SEE ALSO
dg-shell-plugin(1)
See also <@PROJECT_URL@> for additional resources.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment