diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-01-26 22:42:03 +0100 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2022-01-27 10:28:25 +0100 |
commit | a986a42c82e4c3f62d4bc19868ee518d973e3483 (patch) | |
tree | 992660bc0db6219f3ca2429eb382b12c8bb1255d | |
parent | c8de14045e6165a865f5bd1a674af360975aecd3 (diff) | |
download | ayatana-indicator-application-a986a42c82e4c3f62d4bc19868ee518d973e3483.tar.gz ayatana-indicator-application-a986a42c82e4c3f62d4bc19868ee518d973e3483.tar.bz2 ayatana-indicator-application-a986a42c82e4c3f62d4bc19868ee518d973e3483.zip |
CMakeLists.txt: Fix project name (ayatana-indicator-application, not ayatana-appindicator-application).
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d3fb09..6cb7f5c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.13) -project(ayatana-appindicator-application C) +project(ayatana-indicator-application C) if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) SET(CMAKE_INSTALL_PREFIX "/usr" CACHE PATH "..." FORCE) @@ -33,7 +33,7 @@ pkg_check_modules(PROJECT_DEPS REQUIRED glib-2.0>=2.58 ayatana-indicator3-0.4>=0 include(GNUInstallDirs) set(PROJECT_VERSION "0.8.90") -set(PROJECT_NAME "ayatana-appindicator-application") +set(PROJECT_NAME "ayatana-indicator-application") if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") |