diff options
author | Robert Tari <robert@tari.in> | 2023-09-09 08:00:26 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2023-09-09 08:00:26 +0200 |
commit | 5fc752f15c2b0b506d13577cfcae858a28c34f03 (patch) | |
tree | 285d5a463046c162fbe14f5deb669a3bdac3c91b | |
parent | 38dc2dd6af7a7bca030e18783a3b9f84c642e6e6 (diff) | |
download | ayatana-indicator-sound-5fc752f15c2b0b506d13577cfcae858a28c34f03.tar.gz ayatana-indicator-sound-5fc752f15c2b0b506d13577cfcae858a28c34f03.tar.bz2 ayatana-indicator-sound-5fc752f15c2b0b506d13577cfcae858a28c34f03.zip |
CMakeLists.txt: Fix build warnings
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ef2cf6..f2c6503 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -project(ayatana-indicator-sound C CXX) -cmake_minimum_required(VERSION 3.13) +cmake_minimum_required (VERSION 3.13) +project (ayatana-indicator-sound VERSION 22.9.2 LANGUAGES C CXX) if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) SET(CMAKE_INSTALL_PREFIX "/usr" CACHE PATH "..." FORCE) @@ -7,8 +7,6 @@ endif(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" "${CMAKE_MODULE_PATH}") -set(PACKAGE ${CMAKE_PROJECT_NAME}) -set(PROJECT_VERSION 22.9.2) find_package(PkgConfig REQUIRED) include(GNUInstallDirs) include(UseVala) |