Skip to content

Commit de32884

Browse files
bmhan12corbett5
authored andcommitted
Fix local build path for doxygen generation
1 parent f01ef8d commit de32884

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

docs/doxygen/CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
blt_add_doxygen_target( LvArray_doxygen )
2+
3+
# Required directory for doxygen to generate output to
4+
add_custom_target( lvarray_build_doxygen_output_dir
5+
ALL
6+
COMMAND ${CMAKE_COMMAND} -E make_directory
7+
${CMAKE_BINARY_DIR}/docs/sphinx/html/doxygen
8+
)
9+
add_dependencies( LvArray_doxygen lvarray_build_doxygen_output_dir )

docs/doxygen/Doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ PROJECT_LOGO =
5858
# entered, it will be relative to the location where doxygen was started. If
5959
# left blank the current directory will be used.
6060

61-
OUTPUT_DIRECTORY =
61+
OUTPUT_DIRECTORY = ../../docs/sphinx/html/doxygen
6262

6363
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
6464
# directories (in 2 levels) under the output directory of each output format and

scripts/config-build.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python
12
# Python wrapper script for generating the correct cmake line with the options specified by the user.
23
#
34
# Please keep parser option names as close to possible as the names of the cmake options they are wrapping.

0 commit comments

Comments
 (0)