11 lines
269 B
CMake
11 lines
269 B
CMake
|
# Build Docbook manual
|
||
|
# Run 'make html' to build manual
|
||
|
|
||
|
# Build manual in Linux - xmlto is not available in Windows
|
||
|
IF (UNIX)
|
||
|
#macro XMLTO(outfiles infiles... MODES modes...)
|
||
|
INCLUDE("../CMake/xmlto.cmake")
|
||
|
XMLTO("" "manual.docbook" MODES "html")
|
||
|
ENDIF (UNIX)
|
||
|
|