diff options
author | Robert Tari <robert@tari.in> | 2021-10-20 00:35:05 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-10-21 21:26:00 +0200 |
commit | 4f92dd8d052c80c752ca0df5e9b98f9daa6c2c0d (patch) | |
tree | 330d85f6faa1a8c3a3bb3f540244e5b54081983d /cmake | |
parent | 0a26104dcef1a77fb11e4bc8b0659de54caceb99 (diff) | |
download | ayatana-indicator-datetime-4f92dd8d052c80c752ca0df5e9b98f9daa6c2c0d.tar.gz ayatana-indicator-datetime-4f92dd8d052c80c752ca0df5e9b98f9daa6c2c0d.tar.bz2 ayatana-indicator-datetime-4f92dd8d052c80c752ca0df5e9b98f9daa6c2c0d.zip |
Use native CMake GSettings module
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/UseGSettings.cmake | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/cmake/UseGSettings.cmake b/cmake/UseGSettings.cmake deleted file mode 100644 index 3b61523..0000000 --- a/cmake/UseGSettings.cmake +++ /dev/null @@ -1,23 +0,0 @@ -# GSettings.cmake, CMake macros written for Marlin, feel free to re-use them. - -macro(add_schema SCHEMA_NAME) - - set(PKG_CONFIG_EXECUTABLE pkg-config) - set(GSETTINGS_DIR "${CMAKE_INSTALL_FULL_DATAROOTDIR}/glib-2.0/schemas") - - # Run the validator and error if it fails - execute_process (COMMAND ${PKG_CONFIG_EXECUTABLE} gio-2.0 --variable glib_compile_schemas OUTPUT_VARIABLE _glib_compile_schemas OUTPUT_STRIP_TRAILING_WHITESPACE) - execute_process (COMMAND ${_glib_compile_schemas} --dry-run --schema-file=${SCHEMA_NAME} ERROR_VARIABLE _schemas_invalid OUTPUT_STRIP_TRAILING_WHITESPACE) - - if (_schemas_invalid) - message (SEND_ERROR "Schema validation error: ${_schemas_invalid}") - endif (_schemas_invalid) - - # Actually install and recomple schemas - message (STATUS "${GSETTINGS_DIR} is the GSettings install dir") - install (FILES ${SCHEMA_NAME} DESTINATION ${GSETTINGS_DIR} OPTIONAL) - - install (CODE "message (STATUS \"Compiling GSettings schemas\")") - install (CODE "execute_process (COMMAND ${_glib_compile_schemas} ${GSETTINGS_DIR})") -endmacro() - |