The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

20 lines
662 B

string(REPLACE "." "_" DOXYGEN_TAG ${DOXYGEN_VERSION})
ExternalProject_Add(
Doxygen-EP
GIT_REPOSITORY "https://github.com/doxygen/doxygen.git"
GIT_TAG Release_${DOXYGEN_TAG}
UPDATE_COMMAND ""
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=<INSTALL_DIR>
)
ExternalProject_Get_Property(Doxygen-EP INSTALL_DIR)
# If find_package succeeded but found an old version, the target is already created.
if(NOT TARGET Doxygen::doxygen)
add_executable(Doxygen::doxygen IMPORTED GLOBAL)
endif()
set_target_properties(Doxygen::doxygen PROPERTIES IMPORTED_LOCATION "${INSTALL_DIR}/bin/doxygen")
add_dependencies(Doxygen::doxygen Doxygen-EP)
add_dependencies(resources Doxygen-EP)