message("")
message(STATUS "${BoldGreen}Starting configuration for the doc material for ${CMAKE_PROJECT_NAME} ${ColourReset}")
message("")

# The UNIX man pages
if(UNIX)

	message(STATUS "Going to generate the man pages.")

	execute_process(COMMAND docbook-to-man minexpert2.xml
		OUTPUT_FILE	${CMAKE_BINARY_DIR}/minexpert2.1
		WORKING_DIRECTORY	${CMAKE_CURRENT_SOURCE_DIR})

endif(UNIX)


###############
# install stuff

# The history and licence files.

message("Installing the doc files in ${DOC_DIR}")
install(FILES history.html ../LICENSE
	DESTINATION ${DOC_DIR})

# The man page.
if(UNIX)
	install(FILES ${CMAKE_BINARY_DIR}/minexpert2.1
		${CMAKE_BINARY_DIR}/minexpert2.1
		DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1)
endif()


#############################################################
###########################
# BUILD OF THE USER MANUALS

if(BUILD_USER_MANUAL)
	add_subdirectory(user-manual)
endif()


message("")
message(STATUS "${BoldGreen}Finished configuration of the doc material.${ColourReset}")
message("")

