summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindGconf.cmake14
-rw-r--r--cmake/FindGypsy.cmake14
2 files changed, 0 insertions, 28 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()
diff --git a/cmake/FindGypsy.cmake b/cmake/FindGypsy.cmake
deleted file mode 100644
index 3639568e..00000000
--- a/cmake/FindGypsy.cmake
+++ /dev/null
@@ -1,14 +0,0 @@
-find_package(PkgConfig QUIET)
-if (PkgConfig_FOUND)
- pkg_check_modules(Gypsy gypsy IMPORTED_TARGET)
-
- if (TARGET PkgConfig::Gypsy)
- mark_as_advanced(Gypsy_LIBRARIES Gypsy_INCLUDE_DIRS)
- if (NOT TARGET Gypsy::Gypsy)
- add_library(Gypsy::Gypsy INTERFACE IMPORTED)
- target_link_libraries(Gypsy::Gypsy INTERFACE PkgConfig::Gypsy)
- endif()
- else()
- set(Gypsy_FOUND 0)
- endif()
-endif()