Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/hubcast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Repo:
# Set to [pipeline] for overall pipeline status only
# Set to [jobs] for individual job statuses only
# Set to [pipeline, jobs] to report both
check_types: [pipeline]
check_types: [pipeline, jobs]

# Optional: delete branches from destination when source PR is closed (default: true)
delete_closed: true
Expand Down
2 changes: 1 addition & 1 deletion cmake/blt
Submodule blt updated 411 files
3 changes: 1 addition & 2 deletions src/docs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
# SPDX-License-Identifier: (BSD-3-Clause)

if (SPHINX_FOUND)
blt_add_sphinx_target(smith_docs)
blt_add_sphinx_target(TARGET smith_docs)
endif()

if (DOXYGEN_FOUND)
add_subdirectory(doxygen)
endif()

19 changes: 1 addition & 18 deletions src/docs/doxygen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,7 @@
#
# SPDX-License-Identifier: (BSD-3-Clause)

find_package(Doxygen COMPONENTS dot)

if(DOXYGEN_DOT_FOUND)
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tupek2 let me know why this was needed and we can look into re-adding this. blt handles setting up doxygen. and im not sure about the pdflatex thing.

set(DOXYGEN_HAVE_DOT "YES")
else()
set(DOXYGEN_HAVE_DOT "NO")
endif()

# Check for pdflatex for latex generation
find_program(PDFLATEX_EXECUTABLE pdflatex)
if(PDFLATEX_EXECUTABLE)
set(DOXYGEN_GENERATE_LATEX "YES")
else()
set(DOXYGEN_GENERATE_LATEX "NO")
endif()

blt_add_doxygen_target( smith_doxygen )
blt_add_doxygen_target(TARGET smith_doxygen)

# Required directory for doxygen to generate output to
add_custom_target( build_doxygen_output_dir
Expand All @@ -29,4 +13,3 @@ add_custom_target( build_doxygen_output_dir
)

add_dependencies( smith_doxygen build_doxygen_output_dir )

Loading