fmt/doc/CMakeLists.txt

11 lines
295 B
CMake
Raw Normal View History

find_program(DOXYGEN doxygen)
if (NOT DOXYGEN)
message(STATUS "Target 'doc' disabled (requires doxygen)")
return ()
endif ()
2015-11-23 16:10:02 +00:00
add_custom_target(doc
2016-04-24 14:16:33 +00:00
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/build.py ${FMT_VERSION})
2016-04-24 14:45:13 +00:00
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/ DESTINATION share/doc/fmt)