summaryrefslogtreecommitdiff
path: root/libproxy/cmake/modules/config_gnome.cmk
diff options
context:
space:
mode:
authorJan-Michael Brummer <jan.brummer@tabos.org>2023-05-02 10:53:36 +0200
committerGitHub <noreply@github.com>2023-05-02 10:53:36 +0200
commitd159c5f40ff7e82354e45116d9b66b1f596d9320 (patch)
tree34506d9ee6c699444a170c6bba8c925c45407d3e /libproxy/cmake/modules/config_gnome.cmk
parent8fec01ed4b95afc71bf7710bf5b736a5de03b343 (diff)
parent5272fb3d114f0d012871380bd429546c73f0226d (diff)
downloadlibproxy-git-d159c5f40ff7e82354e45116d9b66b1f596d9320.tar.gz
Merge pull request #201 from janbrummer/rewrite
Complete rewrite
Diffstat (limited to 'libproxy/cmake/modules/config_gnome.cmk')
-rw-r--r--libproxy/cmake/modules/config_gnome.cmk22
1 files changed, 0 insertions, 22 deletions
diff --git a/libproxy/cmake/modules/config_gnome.cmk b/libproxy/cmake/modules/config_gnome.cmk
deleted file mode 100644
index 4326972..0000000
--- a/libproxy/cmake/modules/config_gnome.cmk
+++ /dev/null
@@ -1,22 +0,0 @@
-if (NOT WIN32 AND NOT APPLE)
- option(WITH_GNOME2 "Target a GNOME 2 system (gconf)" OFF)
- option(WITH_GNOME3 "Target a GNOME 3 system (gsettings)" ON)
- if(WITH_GNOME3)
- px_check_modules(GNOME3 gio-2.0>=2.26 gobject-2.0)
- else(WITH_GNOME3)
- px_check_modules(GNOME2 gconf-2.0 gobject-2.0)
- endif(WITH_GNOME3)
-
- # GNOME (gconf) helper
- if(GNOME2_FOUND OR GNOME3_FOUND)
- if(WITH_GNOME3)
- add_executable(pxgsettings modules/pxgsettings.cpp)
- target_link_libraries(pxgsettings ${GNOME3_LIBRARIES})
- install(TARGETS pxgsettings RUNTIME DESTINATION ${LIBEXEC_INSTALL_DIR})
- else(WITH_GNOME3)
- add_executable(pxgconf modules/pxgconf.cpp)
- target_link_libraries(pxgconf ${GNOME2_LIBRARIES})
- install(TARGETS pxgconf RUNTIME DESTINATION ${LIBEXEC_INSTALL_DIR})
- endif(WITH_GNOME3)
- endif()
-endif()