From 5e114328abeb57be638ef41c1b99523c2fdbff95 Mon Sep 17 00:00:00 2001
From: flamewing <flamewing.sonic@gmail.com>
Date: Thu, 3 Jun 2021 14:15:56 +0200
Subject: [PATCH] Turns out cmake 3.19 is needed for aliasing interface libs

---
 CMakeLists.txt | 2 +-
 README.md      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 89d02f6..3734258 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.12)
+cmake_minimum_required(VERSION 3.19)
 
 project(mdcomp
     VERSION 0.2.0
diff --git a/README.md b/README.md
index a68ad06..8826f52 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ The remainder is licensed under the GNU Lesser General Public License v3 (LGPL-3
 
 ## Create and install the package
 
-You need a C++ development toolchain, including `cmake` at least 3.12 and [Boost](https://www.boost.org/) at least 1.54. With the dependencies installed, you run the following commands:
+You need a C++ development toolchain, including `cmake` at least 3.19 and [Boost](https://www.boost.org/) at least 1.54. With the dependencies installed, you run the following commands:
 
 ```bash
    cmake -S . -B build -G <generator>