Skip to content
Snippets Groups Projects
Commit aa1d4e23 authored by Thomas Moulard's avatar Thomas Moulard
Browse files

Add man pages.

parent a1fb4793
No related branches found
No related tags found
No related merge requests found
# # 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)
=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.
=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.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment