openjpeg/doc/CMakeLists.txt

13 lines
278 B
CMake
Raw Normal View History

FIND_PACKAGE(Doxygen)
#
IF(DOXYGEN_EXECUTABLE)
2007-09-06 17:10:15 +02:00
# The Doxyfile.dox is poorly defined and produce output
# in the source dir
ADD_CUSTOM_TARGET(doc
2007-09-06 17:10:15 +02:00
${DOXYGEN}
${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.dox
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
ENDIF(DOXYGEN_EXECUTABLE)
2010-10-22 20:41:17 +02:00