Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /JETSCAPE/external_packages/trento/doc/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 find_program(DOXYGEN doxygen)
0002 find_program(SPHINX sphinx-build)
0003 
0004 if(DOXYGEN AND SPHINX)
0005   configure_file(Doxyfile.in Doxyfile)
0006   configure_file(conf.py.in conf.py)
0007   add_custom_target(doc
0008     COMMAND ${DOXYGEN}
0009       ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
0010     COMMAND ${SPHINX}
0011       -b html
0012       -c ${CMAKE_CURRENT_BINARY_DIR}
0013       ${CMAKE_CURRENT_SOURCE_DIR}
0014       ${CMAKE_CURRENT_BINARY_DIR}/html
0015   )
0016 endif()