From 14bd915fbeb3e5d4bb870b99be370a6332178a78 Mon Sep 17 00:00:00 2001 From: Greg Knisely Date: Mon, 21 Nov 2022 14:53:14 -0500 Subject: [PATCH 1/2] this was introduced in cmake 3.12.4. --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 998e194..dad8a64 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,7 @@ cmake_minimum_required(VERSION 3.5) project(cpp-statsd-client VERSION 1.0.2 LANGUAGES CXX - DESCRIPTION "A header-only StatsD client implemented in C++" - HOMEPAGE_URL "https://github.com/vthiery/cpp-statsd-client") + DESCRIPTION "A header-only StatsD client implemented in C++") option(CPP_STATSD_STANDALONE "Allows configuration of targets for verifying library functionality" ON) option(ENABLE_TESTS "Build tests" ON) From 2d19966460bccb4660fcef41b4143bb3b856224a Mon Sep 17 00:00:00 2001 From: Greg Knisely Date: Tue, 22 Nov 2022 15:17:15 -0500 Subject: [PATCH 2/2] min should be 3.12.4 --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dad8a64..30c6036 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,10 @@ # Basic project setup -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.12.4) project(cpp-statsd-client VERSION 1.0.2 LANGUAGES CXX - DESCRIPTION "A header-only StatsD client implemented in C++") + DESCRIPTION "A header-only StatsD client implemented in C++" + HOMEPAGE_URL "https://github.com/vthiery/cpp-statsd-client") option(CPP_STATSD_STANDALONE "Allows configuration of targets for verifying library functionality" ON) option(ENABLE_TESTS "Build tests" ON)