From f4071047e9083f71ac8b1cb890d5bcde154b140e Mon Sep 17 00:00:00 2001 From: "Geoff R. McLane" Date: Sun, 8 Mar 2015 12:35:41 +0100 Subject: [PATCH] Output only to build folder --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a188882..ede7483 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -177,11 +177,11 @@ if (UNIX) if (XSLTPROC_FOUND) ## NOTE: man name must match exe ie currently `tidy5.1` not `tidy.1` ## also could use `manpath` command output to determine target install path - message("*** Generating man ***") + message(STATUS "*** Generating man ***") set(TIDY_MANFILE tidy5.1) set(TIDY1XSL ../documentation/tidy1.xsl) set(TIDYHELP ${CMAKE_BINARY_DIR}/tidy-help.xml) - set(TIDYCONFIG ../documentation/tidy-config.xml) + set(TIDYCONFIG ${CMAKE_BINARY_DIR}/tidy-config.xml) add_custom_target(man ALL DEPENDS "${CMAKE_BINARY_DIR}/tidy5") # run built EXE to generate xml output @@ -196,7 +196,7 @@ if (UNIX) add_custom_command( TARGET man COMMAND ${CMAKE_BINARY_DIR}/tidy5 -xml-config > ${TIDYCONFIG} - COMMENT "Generate ${TIDYHELP}" + COMMENT "Generate ${TIDYCONFIG}" VERBATIM )