Skip to content

Commit

Permalink
(#16036) remove MesonDeps from template
Browse files Browse the repository at this point in the history
  • Loading branch information
memsharded authored Feb 16, 2023
1 parent b857dbe commit a060054
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions docs/package_templates/meson_package/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from conan.tools.files import apply_conandata_patches, copy, export_conandata_patches, get, replace_in_file, rm, rmdir
from conan.tools.gnu import PkgConfigDeps
from conan.tools.layout import basic_layout
from conan.tools.meson import Meson, MesonToolchain, MesonDeps
from conan.tools.meson import Meson, MesonToolchain
from conan.tools.microsoft import check_min_vs, is_msvc
from conan.tools.scm import Version
import os
Expand Down Expand Up @@ -114,9 +114,6 @@ def generate(self):
# In case there are dependencies listed on requirements, PkgConfigDeps should be used
tc = PkgConfigDeps(self)
tc.generate()
# Sometimes, when PkgConfigDeps is not enough to find requirements, MesonDeps should solve it
tc = MesonDeps(self)
tc.generate()
# In case there are dependencies listed on build_requirements, VirtualBuildEnv should be used
tc = VirtualBuildEnv(self)
tc.generate()
Expand Down

0 comments on commit a060054

Please sign in to comment.