From 5586f13c5851347d91bac64d879cf37fa642ace4 Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Mon, 1 Feb 2010 23:20:13 +0200 Subject: [PATCH] CMake - build HTML manual in Cygwin. Latest update to Cygwin made possible to build HTML manual also in the Cygwin. Requires latest version 4.5 of DocBook XML. --- man/CMakeLists.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/man/CMakeLists.txt b/man/CMakeLists.txt index 87477aa08..8216fea33 100644 --- a/man/CMakeLists.txt +++ b/man/CMakeLists.txt @@ -2,9 +2,8 @@ # Run 'make html' to build manual # Build manual in Linux - xmlto is not available in Windows -IF (UNIX) +IF (UNIX OR CYGWIN) #macro XMLTO(outfiles infiles... MODES modes...) INCLUDE("../CMake/xmlto.cmake") XMLTO("" "manual.docbook" MODES "html") -ENDIF (UNIX) - +ENDIF (UNIX OR CYGWIN)