diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-01-26 22:42:03 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-01-26 22:42:03 +0100 |
commit | d49af68fbe3376410c5769aa39aed65441ad2c49 (patch) | |
tree | 79c77286fc0785dc4aa2f2f084b9323193d69797 | |
parent | 91143cbd7aaf6ba6dac7d22948a551bd02bd40c8 (diff) | |
download | ayatana-indicator-application-d49af68fbe3376410c5769aa39aed65441ad2c49.tar.gz ayatana-indicator-application-d49af68fbe3376410c5769aa39aed65441ad2c49.tar.bz2 ayatana-indicator-application-d49af68fbe3376410c5769aa39aed65441ad2c49.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") |