Dependencies on other modules are currently specified using the name of the other module alone. It should instead/alternatively be possible to specify the dependency as component of the top-level project / subproject package. For example,
basis_project(
NAME "Numerics"
PACKAGE "MIRTK"
DEPENDS MIRK{Common}
)
instead of
basis_project(
NAME "Numerics"
PACKAGE "MIRTK"
DEPENDS Common
)
assuming that the MIRTK project has two modules named Common and Numerics.
Dependencies on other modules are currently specified using the name of the other module alone. It should instead/alternatively be possible to specify the dependency as component of the top-level project / subproject package. For example,
instead of
assuming that the MIRTK project has two modules named
Common
andNumerics
.