From 54e5c70447b0ea34047e355b0d30445de77dc019 Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Tue, 23 Jan 2024 10:06:01 +0100 Subject: [PATCH] Changed minimum versions --- CMakeLists.txt | 2 +- src/core/CMakeLists.txt | 2 +- src/printer/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3747e01..57f98d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.8) +cmake_minimum_required(VERSION 3.10) project(kima2 VERSION 1.7.2) diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 46e4e25..2e78044 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -1,6 +1,6 @@ set(Boost_USE_STATIC_LIBS ON) -find_package(Boost 1.80 REQUIRED) +find_package(Boost 1.78 REQUIRED) find_package(SQLite3 REQUIRED) # Because csv-parser needs threads: diff --git a/src/printer/CMakeLists.txt b/src/printer/CMakeLists.txt index f7d6964..da788f8 100644 --- a/src/printer/CMakeLists.txt +++ b/src/printer/CMakeLists.txt @@ -1,6 +1,6 @@ set(Boost_USE_STATIC_LIBS ON) -find_package(Boost 1.80 REQUIRED) +find_package(Boost 1.78 REQUIRED) if(WIN32) find_package(LIBUSB REQUIRED)