Added Mac support

This commit is contained in:
Daniel Mensinger 2019-02-12 19:30:46 +01:00
parent 03d9bc3b0e
commit 33f5f06f38
No known key found for this signature in database
GPG Key ID: 54DD94C131E277D4
1 changed files with 7 additions and 0 deletions

View File

@ -1186,6 +1186,13 @@ class CMakeDependency(ExternalDependency):
if search_lib_dirs(os.path.join(i, k)):
return True
# Mac framework support
for j in ['{}.framework', '{}.app']:
j = j.format(lname)
if j in content:
if find_module(os.path.join(i, j, 'Resources')):
return True
# Check the environment path
env_path = os.environ.get('{}_DIR'.format(name))
if env_path and find_module(env_path):