cling: add missing CMake dependency (#26577)

This commit is contained in:
Rodrigo Ceccato de Freitas 2021-10-08 04:28:37 -03:00 committed by GitHub
parent f390289629
commit 169d0a5649
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,6 +35,8 @@ class Clingo(CMakePackage):
variant("docs", default=False, description="build documentation with Doxygen") variant("docs", default=False, description="build documentation with Doxygen")
variant("python", default=True, description="build with python bindings") variant("python", default=True, description="build with python bindings")
depends_on('cmake@3.1:', type='build')
depends_on('doxygen', type="build", when="+docs") depends_on('doxygen', type="build", when="+docs")
depends_on('re2c@0.13:', type="build") depends_on('re2c@0.13:', type="build")
depends_on('bison@2.5:', type="build") depends_on('bison@2.5:', type="build")