__init__.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Copyright 2017 The Meson development team
  2. # Licensed under the Apache License, Version 2.0 (the "License");
  3. # you may not use this file except in compliance with the License.
  4. # You may obtain a copy of the License at
  5. # http://www.apache.org/licenses/LICENSE-2.0
  6. # Unless required by applicable law or agreed to in writing, software
  7. # distributed under the License is distributed on an "AS IS" BASIS,
  8. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. # See the License for the specific language governing permissions and
  10. # limitations under the License.
  11. from .base import ( # noqa: F401
  12. Dependency, DependencyException, DependencyMethods, ExternalProgram,
  13. ExternalDependency, ExternalLibrary, ExtraFrameworkDependency, InternalDependency,
  14. PkgConfigDependency, find_external_dependency, get_dep_identifier, packages)
  15. from .dev import GMockDependency, GTestDependency, LLVMDependency, ValgrindDependency
  16. from .misc import BoostDependency, Python3Dependency, ThreadDependency
  17. from .platform import AppleFrameworks
  18. from .ui import GLDependency, GnuStepDependency, Qt4Dependency, Qt5Dependency, SDL2Dependency, WxDependency
  19. packages.update({
  20. # From dev:
  21. 'gtest': GTestDependency,
  22. 'gmock': GMockDependency,
  23. 'llvm': LLVMDependency,
  24. 'valgrind': ValgrindDependency,
  25. # From misc:
  26. 'boost': BoostDependency,
  27. 'python3': Python3Dependency,
  28. 'threads': ThreadDependency,
  29. # From platform:
  30. 'appleframeworks': AppleFrameworks,
  31. # From ui:
  32. 'gl': GLDependency,
  33. 'gnustep': GnuStepDependency,
  34. 'qt4': Qt4Dependency,
  35. 'qt5': Qt5Dependency,
  36. 'sdl2': SDL2Dependency,
  37. 'wxwidgets': WxDependency,
  38. })