cppcheck/man/CMakeLists.txt
Kimmo Varis a5dd99bc8c CMake - build htmlhelp manual in Cygwin.
I want to build htmlhelp manual for Windows with Cygwin. This is
the easiest way to create "native" manual for Windows users.
2010-02-01 23:42:29 +02:00

23 lines
504 B
CMake

# Build Docbook manual
# Run 'make html' to build manual
# Build manual in Linux/Cygwin - xmlto is not available in Windows
SET(DOC_TARGETS "html")
# Build also htmlhelp in Cygwin - this can be used to build
# htmlhelp manual for Windows.
IF (CYGWIN)
SET(DOC_TARGETS
${DOC_TARGETS}
"htmlhelp"
)
ENDIF(CYGWIN)
IF (UNIX OR CYGWIN)
#macro XMLTO(outfiles infiles... MODES modes...)
INCLUDE("../CMake/xmlto.cmake")
XMLTO("" "manual.docbook" MODES ${DOC_TARGETS})
ENDIF (UNIX OR CYGWIN)