Skip to content

Commit

Permalink
Merge pull request #46 from eseiler/infra/submodule_cfg
Browse files Browse the repository at this point in the history
[INFRA] Allow setting the submodule directory
  • Loading branch information
eseiler authored Aug 21, 2023
2 parents b89792b + 974e22d commit c3adc74
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmake/configuration.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ endmacro ()
# Add submodules
# ----------------------------------------------------------------------------

file (GLOB submodules ${HIBF_SOURCE_DIR}/submodules/*/include ${HIBF_SOURCE_DIR}/submodules/simde/simde)
set (HIBF_SUBMODULES_DIR
"${HIBF_SOURCE_DIR}"
CACHE STRING "Directory containing submodules.")
file (GLOB submodules ${HIBF_SUBMODULES_DIR}/submodules/*/include ${HIBF_SUBMODULES_DIR}/submodules/simde/simde
${HIBF_SUBMODULES_DIR}/simde/simde)
foreach (submodule ${submodules})
if (IS_DIRECTORY ${submodule})
hibf_config_print (" …adding submodule include: ${submodule}")
Expand Down

1 comment on commit c3adc74

@vercel
Copy link

@vercel vercel bot commented on c3adc74 Aug 21, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

hibf – ./

hibf.vercel.app
hibf-git-main-seqan.vercel.app
hibf-seqan.vercel.app

Please sign in to comment.