blob: 947b1dafdddab0eb80b4e7d5e0c65002c9a574cc (
plain)
1
2
3
4
5
6
7
8
9
|
execute_process(
COMMAND "@HTML_HELP_COMPILER@" xtrkcad.hhp
RESULT_VARIABLE results
ERROR_VARIABLE error
)
if(NOT "${results}" STREQUAL "1")
message(FATAL_ERROR "Creating chm failed! ${error}")
endif()
|