Skip to content

Commit

Permalink
JCF: Issue #129: ensure that packages needed for daq-cmake's build fu…
Browse files Browse the repository at this point in the history
…nctions (daq_add_python_bindings, etc.) only depend on daq-cmake in the build phase
  • Loading branch information
John Freeman committed Aug 18, 2022
1 parent 349a28f commit f13fb79
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class DaqCmake(CMakePackage):

version("XVERSIONX", commit="XHASHX")

depends_on("py-pybind11", type=("link", "run"))
depends_on("py-moo", type=("link", "run"))
depends_on("cmake", type=("build", "link", "run"))
depends_on("py-pybind11", type=("build"))
depends_on("py-moo", type=("build"))
depends_on("cmake", type=("build"))

# DBT_DEBUG is used by daq-cmake to set compiler options
def cmake_args(self):
Expand Down

0 comments on commit f13fb79

Please sign in to comment.