From 269aa4c7df03e1e581c01866c91bcfa5524d6334 Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Tue, 27 Aug 2024 14:43:59 +0200 Subject: Rewrite using C/CMake/Gtk4 and add some features/tweaks --- CMakeLists.txt | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..61acf60 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,40 @@ +cmake_minimum_required (VERSION 3.13) +project (ayatana-settings VERSION 23.11.14 LANGUAGES C) + +if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + SET (CMAKE_INSTALL_PREFIX "/usr" CACHE PATH "..." FORCE) +endif (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + +# Options + +option (ENABLE_WERROR "Treat all build warnings as errors" OFF) + +set(CMAKE_BUILD_TYPE "Release") + +if (ENABLE_WERROR) + add_definitions ("-Werror") +endif () + +if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + add_definitions ("-Weverything") +else () + add_definitions ("-Wall") +endif () + +# Prerequisites + +include (GNUInstallDirs) +find_package (PkgConfig REQUIRED) +include (FindPkgConfig) +pkg_check_modules (DEPS REQUIRED gtk4>=4.14 gmodule-export-2.0) + +# Build + +add_subdirectory (src) +add_subdirectory (data) +add_subdirectory (po) + +# Info + +message (STATUS "Install prefix: ${CMAKE_INSTALL_PREFIX}") +message (STATUS "Build with -Werror: ${ENABLE_WERROR}") -- cgit v1.2.3 From 1398450b47460ae951f69e410311677cb8fc14a7 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Tue, 27 Aug 2024 15:30:03 +0200 Subject: Pre-release bump of software version. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 61acf60..9d18701 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required (VERSION 3.13) -project (ayatana-settings VERSION 23.11.14 LANGUAGES C) +project (ayatana-settings VERSION 24.8.0 LANGUAGES C) if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) SET (CMAKE_INSTALL_PREFIX "/usr" CACHE PATH "..." FORCE) -- cgit v1.2.3