chore: switch to CMake build system instead of native Visual Studio project
This commit is contained in:
18
Documents/CMakeLists.txt
Normal file
18
Documents/CMakeLists.txt
Normal file
@ -0,0 +1,18 @@
|
||||
# Configure Doxygen config file
|
||||
configure_file(
|
||||
${CMAKE_CURRENT_LIST_DIR}/Doxyfile.in
|
||||
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
|
||||
@ONLY
|
||||
)
|
||||
|
||||
# Add custom target
|
||||
add_custom_target (LibCmoDocuments
|
||||
doxygen ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
||||
COMMENT "Generating LibCmo documentation" VERBATIM
|
||||
)
|
||||
|
||||
# Install built documentation
|
||||
install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html
|
||||
DESTINATION ${NEMO_INSTALL_DOC_PATH}
|
||||
)
|
2778
Documents/Doxyfile.in
Normal file
2778
Documents/Doxyfile.in
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user