Skip to content
Snippets Groups Projects
Commit a84031f8 authored by Lubosz Sarnecki's avatar Lubosz Sarnecki
Browse files

build: Look for mutter-clutter-4 if 3 is not found.

parent a762070d
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,10 @@ xdo_lib = cc.find_library('xdo', dirs : ['/usr/lib'], required : false)
mutter_clutter_dep = dependency('mutter-clutter-3', required : false)
if not mutter_clutter_dep.found()
mutter_clutter_dep = dependency('mutter-clutter-4', required : false)
endif
subdir('src')
subdir('examples')
subdir('tests')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment