diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-05-17 13:42:48 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-05-17 13:42:48 +0200 |
commit | 80253cf181e7acc535952c4a6822e09a01a8cfdd (patch) | |
tree | c232c3f7a73a6d17d63622c0fee255dc45795e96 | |
parent | b28e807d94462770765566ab0d879554da1f2b23 (diff) | |
download | libayatana-indicator-80253cf181e7acc535952c4a6822e09a01a8cfdd.tar.gz libayatana-indicator-80253cf181e7acc535952c4a6822e09a01a8cfdd.tar.bz2 libayatana-indicator-80253cf181e7acc535952c4a6822e09a01a8cfdd.zip |
CMakeLists.txt: Report more build parameters to stdout when CMake configures the build.
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2d4e85a..3ca49ee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -122,4 +122,7 @@ endif() # Display config info message(STATUS "Install prefix: ${CMAKE_INSTALL_PREFIX}") +message(STATUS "GTK+-3.0 build: ${FLAVOUR_GTK3}") +message(STATUS "GTK+-2.0 build: ${FLAVOUR_GTK2}") +message(STATUS "IDO enabled: ${ENABLE_IDO}") message(STATUS "Unit tests: ${ENABLE_TESTS}") |