Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
9 changes: 4 additions & 5 deletions examples/contact/homotopy/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@
# SPDX-License-Identifier: (BSD-3-Clause)

if (TRIBOL_FOUND AND STRUMPACK_DIR AND SMITH_ENABLE_CONTINUATION)
blt_add_executable( NAME two_blocks_example
SOURCES two_blocks.cpp
OUTPUT_DIR ${EXAMPLE_OUTPUT_DIRECTORY}
DEPENDS_ON smith continuation_solver
)
smith_add_executable(NAME two_blocks_example
SOURCES two_blocks.cpp
OUTPUT_DIR ${EXAMPLE_OUTPUT_DIRECTORY}
DEPENDS_ON smith continuation_solver)
smith_add_example_test(NAME two_blocks
COMMAND two_blocks_example
NUM_MPI_TASKS 4)
Expand Down
8 changes: 4 additions & 4 deletions examples/explicit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ if(SMITH_USE_ENZYME)
foreach(filename ${EXPLICIT_DYNAMICS_EXAMPLES_SOURCES})
get_filename_component(example_name ${filename} NAME_WE)

blt_add_executable(NAME explicit_${example_name}
SOURCES ${filename}
OUTPUT_DIR ${EXAMPLE_OUTPUT_DIRECTORY}
DEPENDS_ON smith)
smith_add_executable(NAME explicit_${example_name}
SOURCES ${filename}
OUTPUT_DIR ${EXAMPLE_OUTPUT_DIRECTORY}
DEPENDS_ON smith)

smith_add_example_test(NAME explicit_${example_name}
COMMAND explicit_${example_name}
Expand Down
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 )