summaryrefslogtreecommitdiff
path: root/cmake/FindGconf.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindGconf.cmake')
-rw-r--r--cmake/FindGconf.cmake14
1 files changed, 0 insertions, 14 deletions
diff --git a/cmake/FindGconf.cmake b/cmake/FindGconf.cmake
deleted file mode 100644
index d2db910a..00000000
--- a/cmake/FindGconf.cmake
+++ /dev/null
@@ -1,14 +0,0 @@
-find_package(PkgConfig QUIET)
-if (PkgConfig_FOUND)
- pkg_check_modules(Gconf gconf-2.0 IMPORTED_TARGET)
-
- if (TARGET PkgConfig::Gconf)
- mark_as_advanced(Gconf_LIBRARIES Gconf_INCLUDE_DIRS)
- if (NOT TARGET Gconf::Gconf)
- add_library(Gconf::Gconf INTERFACE IMPORTED)
- target_link_libraries(Gconf::Gconf INTERFACE PkgConfig::Gconf)
- endif()
- else()
- set(Gconf_FOUND 0)
- endif()
-endif()