From 915fceafa185bee6cfabd71e8ef6025bff15bd3b Mon Sep 17 00:00:00 2001 From: damon Date: Sat, 16 Jan 2021 12:25:32 +0000 Subject: [PATCH 1/2] fixed wrong header name in cmake --- folf/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folf/CMakeLists.txt b/folf/CMakeLists.txt index 25695d9..5a250f1 100644 --- a/folf/CMakeLists.txt +++ b/folf/CMakeLists.txt @@ -20,5 +20,5 @@ set_target_properties(folf-namespace PROPERTIES PUBLIC_HEADER "folf/algorithms.hpp; folf/info.hpp; folf/conTools.hpp; - folf/numTools.hpp; + folf/calcTools.hpp; folf/timeTools.hpp") From 63b011a68858ac87b0ad7116a2b02431c19a7ffa Mon Sep 17 00:00:00 2001 From: damon Date: Sat, 16 Jan 2021 12:59:47 +0000 Subject: [PATCH 2/2] moved version up --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c85fd0..21d417f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16 FATAL_ERROR) project(folf-namespace - VERSION 1.0.2 + VERSION 1.0.3 DESCRIPTION "FOLF - A C++ library developed by a fox and a wolf for testing and making development easier!" HOMEPAGE_URL "https://github.com/FOLF-projects/folf-namespace" LANGUAGES CXX)