diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-10-23 23:46:16 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-10-23 23:47:11 +0200 |
commit | c3e24c2684e5f567363dddcf29587f42b4a74512 (patch) | |
tree | 44f5a1418a7e6c8bfaeac0b923623d714b3d6ed3 /src | |
parent | 7e4b6714abaf2245e3ba590c67e93c2adf4d0a69 (diff) | |
download | libayatana-appindicator-c3e24c2684e5f567363dddcf29587f42b4a74512.tar.gz libayatana-appindicator-c3e24c2684e5f567363dddcf29587f42b4a74512.tar.bz2 libayatana-appindicator-c3e24c2684e5f567363dddcf29587f42b4a74512.zip |
src/CMakeLists.txt: GObjectIntrospection is not optional, so mark it as REQUIRED (only).
Fixes https://github.com/AyatanaIndicators/libayatana-appindicator/issues/28
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 12f3b6c..1d23671 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -132,7 +132,7 @@ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/lib${ayatana_appindicator_gtkver}.so. # AyatanaAppIndicator{,3}-0.1.gir -find_package(GObjectIntrospection REQUIRED QUIET) +find_package(GObjectIntrospection REQUIRED) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${ayatana_appindicator_girver}-0.1.gir" |