view doc/help/CMakeLists.txt @ 1331:8897c90b8166

(issue108) Remove generate_cppcheck and cppcheck target This did not work correctly. It is better just to manually execute cppcheck on the files as it gives you more control over the options.
author Andre Heinecke <andre.heinecke@intevation.de>
date Wed, 15 Oct 2014 13:24:59 +0200
parents 69f7d302cdb9
children
line wrap: on
line source
# Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik
# Software engineering by Intevation GmbH
#
# This file is Free Software under the GNU GPL (v>=2)
# and comes with ABSOLUTELY NO WARRANTY!
# See LICENSE.txt for details.

if(NOT DEFINED SPHINX_THEME)
    set(SPHINX_THEME better)
endif()

if(NOT DEFINED SPHINX_THEME_DIR)
   set(SPHINX_THEME_DIR "${CMAKE_CURRENT_SOURCE_DIR}/theme")
endif()

set(ADMIN_MANUAL_IN "${CMAKE_CURRENT_SOURCE_DIR}/admin")
set(ADMIN_MANUAL_OUT "${CMAKE_CURRENT_BINARY_DIR}/admin")
set(HELP_MANUAL_IN "${CMAKE_CURRENT_SOURCE_DIR}/client")
set(HELP_MANUAL_OUT "${CMAKE_CURRENT_BINARY_DIR}/client")


# configured documentation tools and intermediate build results
set(BINARY_BUILD_DIR_ADMIN "${CMAKE_CURRENT_BINARY_DIR}/_build-admin")
set(BINARY_BUILD_DIR_HELP "${CMAKE_CURRENT_BINARY_DIR}/_build-client")

# Sphinx cache with pickled ReST documents
set(SPHINX_CACHE_DIR_ADMIN "${CMAKE_CURRENT_BINARY_DIR}/_doctrees-admin")
set(SPHINX_CACHE_DIR_HELP "${CMAKE_CURRENT_BINARY_DIR}/_doctrees-client")

# HTML output directory
set(SPHINX_HTML_DIR_ADMIN "${ADMIN_MANUAL_OUT}/html")
set(SPHINX_HTML_DIR_HELP "${HELP_MANUAL_OUT}/html")

configure_file(
    "${ADMIN_MANUAL_IN}/conf.py.in"
    "${BINARY_BUILD_DIR_ADMIN}/conf.py"
    @ONLY)

configure_file(
    "${HELP_MANUAL_IN}/conf.py.in"
    "${BINARY_BUILD_DIR_HELP}/conf.py"
    @ONLY)

add_custom_target(admin_manual ALL
    ${SPHINX_EXECUTABLE}
        -q -b html
        -c "${BINARY_BUILD_DIR_ADMIN}"
        -d "${SPHINX_CACHE_DIR_ADMIN}"
        "${ADMIN_MANUAL_IN}"
        "${SPHINX_HTML_DIR_ADMIN}"
        COMMENT "Building HTML Admin documentation with Sphinx")

add_custom_target(help_manual ALL
    ${SPHINX_EXECUTABLE}
        -q -b html
        -c "${BINARY_BUILD_DIR_HELP}"
        -d "${SPHINX_CACHE_DIR_HELP}"
        "${HELP_MANUAL_IN}"
        "${SPHINX_HTML_DIR_HELP}"
        COMMENT "Building HTML Help with Sphinx")

http://wald.intevation.org/projects/trustbridge/