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.
9 lines
401 B
9 lines
401 B
# generate docs
|
|
add_custom_target(docs COMMAND doxygen docs/Doxyfile > /dev/null
|
|
WORKING_DIRECTORY ${MEDUSA_ROOT})
|
|
# deploy docs
|
|
add_custom_target(deploy COMMAND ./scripts/deploy.sh DEPENDS docs
|
|
WORKING_DIRECTORY ${MEDUSA_ROOT})
|
|
# backup wiki
|
|
add_custom_target(static_wiki COMMAND ./scripts/backup_wiki_static.sh
|
|
WORKING_DIRECTORY ${MEDUSA_ROOT})
|
|
|