Summary: Adding support for generated html documentation for OpenMP. Changing Cmake files to build the documentation and adding the base templates for future documentation to be added. Reviewers: jdoerfert Subscribers: aaron.ballman arphaman guansong mgorny openmp-commits sstefan1 yaxunl Tags: #OpenMP Differential Revision: https://reviews.llvm.org/D87797
12 lines
247 B
CMake
12 lines
247 B
CMake
if (LLVM_ENABLE_SPHINX)
|
|
include(AddSphinxTarget)
|
|
if (SPHINX_FOUND)
|
|
if (${SPHINX_OUTPUT_HTML})
|
|
add_sphinx_target(html openmp)
|
|
endif()
|
|
if (${SPHINX_OUTPUT_MAN})
|
|
add_sphinx_target(man openmp)
|
|
endif()
|
|
endif()
|
|
endif()
|