summaryrefslogtreecommitdiffstats
path: root/cmake/FindGTK3.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindGTK3.cmake')
-rw-r--r--cmake/FindGTK3.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmake/FindGTK3.cmake b/cmake/FindGTK3.cmake
new file mode 100644
index 0000000000..9423eb4b9b
--- /dev/null
+++ b/cmake/FindGTK3.cmake
@@ -0,0 +1,7 @@
+include(FindPkgConfig)
+
+pkg_check_modules(GTK3 "gtk+-3.0 >= 3.6" IMPORTED_TARGET)
+
+if (NOT TARGET PkgConfig::GTK3)
+ set(GTK3_FOUND 0)
+endif()