Change doxygen doc generation output folder (#1274)

* change output
This commit is contained in:
Victor Vazquez 2020-09-28 15:45:08 -07:00 коммит произвёл GitHub
Родитель 30c9498353
Коммит aa9e5aeb05
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 7 добавлений и 7 удалений

2
.gitignore поставляемый
Просмотреть файл

@ -303,7 +303,7 @@ ASALocalRun/
/cmake-build-debug
# Doxygen
/[Dd]ocs/
**/[Dd]oc/generated_doxygen_docs
DoxygenWarningLog.txt
# VS Code Files

Просмотреть файл

@ -58,7 +58,7 @@ PROJECT_LOGO =
# entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used.
OUTPUT_DIRECTORY = docs
OUTPUT_DIRECTORY = doc/generated_doxygen_docs
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
# directories (in 2 levels) under the output directory of each output format and

Просмотреть файл

@ -447,13 +447,13 @@ jobs:
- task: CopyFiles@2
inputs:
sourceFolder: docs/html
sourceFolder: doc/generated_doxygen_docs/html
targetFolder: $(Build.ArtifactStagingDirectory)/docs
displayName: Copy documentation for publishing on GitHub.io
- task: CopyFiles@2
inputs:
sourceFolder: docs/docs.ms
sourceFolder: doc/generated_doxygen_docs/docs.ms
targetFolder: $(Build.ArtifactStagingDirectory)/docs.ms
displayName: Copy documentation for publishing on docs.ms

Просмотреть файл

@ -1,6 +1,6 @@
npm i -g moxygen
# Moxygen will fail if docs/docs.ms does not exist
mkdir -p docs/docs.ms
# Moxygen will fail if doc/generated_doxygen_docs/docs.ms does not exist
mkdir -p doc/generated_doxygen_docs/docs.ms
moxygen --anchors --output docs/docs.ms/api-docs.md docs/xml
moxygen --anchors --output doc/generated_doxygen_docs/docs.ms/api-docs.md doc/generated_doxygen_docs/xml