Skip to content

Commit 07fdc07

Browse files
authored
Merge pull request #1118 from asurdej-comcast/cairo-gl
[CairoGL] Try cairo-glesv3 if cairo-glesv2 not found
2 parents 871c426 + 25b42e6 commit 07fdc07

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Source/cmake/FindCairoGL.cmake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030

3131
find_package(PkgConfig QUIET)
3232
pkg_check_modules(CAIROGL cairo-glesv2)
33+
if (NOT CAIROGL_FOUND)
34+
pkg_check_modules(CAIROGL cairo-glesv3)
35+
endif()
3336

3437
if (CAIROGL_FOUND)
3538
# At the moment CairoGL does not add any extra cflags and libraries, so we can

0 commit comments

Comments
 (0)