Keep doxygen related scripts in doxygen/scripts

This commit is contained in:
redtide 2020-03-09 00:25:35 +01:00
parent 0dd074639f
commit 1d996945a1
3 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,12 @@
#!/bin/bash
# Must be called from the root directory
cat >>index.md <<EOF
---
title: "API"
---
EOF
for tag in $(git tag --list); do
if [[ ${tag} != "list" && ${tag} != *"test"* ]]; then
echo "- [${tag}](${tag})" >> index.md
fi
done

View file

@ -52,7 +52,7 @@ if(WIN32)
configure_file (${PROJECT_SOURCE_DIR}/scripts/innosetup.iss.in ${PROJECT_BINARY_DIR}/innosetup.iss @ONLY)
endif()
configure_file (${PROJECT_SOURCE_DIR}/scripts/Doxyfile.in ${PROJECT_SOURCE_DIR}/Doxyfile @ONLY)
configure_file (${PROJECT_SOURCE_DIR}/doxygen/scripts/Doxyfile.in ${PROJECT_SOURCE_DIR}/Doxyfile @ONLY)
add_library (sfizz::parser ALIAS sfizz_parser)
add_library (sfizz::sfizz ALIAS sfizz_static)