Skip to content

Commit

Permalink
libest: add AutotoolsDeps
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Aug 18, 2023
1 parent 2396942 commit 7eaa9e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recipes/libest/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from conan.errors import ConanInvalidConfiguration
from conan.tools.apple import is_apple_os
from conan.tools.files import apply_conandata_patches, chdir, copy, export_conandata_patches, get
from conan.tools.gnu import Autotools, AutotoolsToolchain, PkgConfigDeps
from conan.tools.gnu import Autotools, AutotoolsToolchain, PkgConfigDeps, AutotoolsDeps
from conan.tools.layout import basic_layout

required_conan_version = ">=1.53.0"
Expand Down Expand Up @@ -59,6 +59,8 @@ def generate(self):
# - Release build: https://github.com/cisco/libest/blob/70824ddc09bee661329b9416082d88566efefb32/intro.txt#L253
tc = AutotoolsToolchain(self)
tc.generate()
tc = AutotoolsDeps(self)
tc.generate()
tc = PkgConfigDeps(self)
tc.generate()

Expand Down

0 comments on commit 7eaa9e5

Please sign in to comment.