aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Sunet <msunet@shellblade.net>2021-12-23 17:29:33 -0800
committerMarc Sunet <msunet@shellblade.net>2021-12-23 17:29:33 -0800
commite504a003cf5e88c9440ab49e10792e0e26b96c45 (patch)
tree6d71017132126c44654d2eb202f53e31d760a013
parentcc96d69ed11c60a782cd8b993d4bdf2ce8c99560 (diff)
Lower cmake version to 3.0
-rw-r--r--CMakeLists.txt2
-rw-r--r--cstring/CMakeLists.txt2
-rw-r--r--list/CMakeLists.txt2
-rw-r--r--listpool/CMakeLists.txt2
-rw-r--r--log/CMakeLists.txt2
-rw-r--r--mempool/CMakeLists.txt2
-rw-r--r--timer/CMakeLists.txt2
7 files changed, 7 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9b97945..8eb368e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.16) 1cmake_minimum_required(VERSION 3.0)
2 2
3project(clib) 3project(clib)
4 4
diff --git a/cstring/CMakeLists.txt b/cstring/CMakeLists.txt
index 67fb366..3283cea 100644
--- a/cstring/CMakeLists.txt
+++ b/cstring/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.16) 1cmake_minimum_required(VERSION 3.0)
2 2
3project(cstring) 3project(cstring)
4 4
diff --git a/list/CMakeLists.txt b/list/CMakeLists.txt
index 5d11d28..8caeabc 100644
--- a/list/CMakeLists.txt
+++ b/list/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.16) 1cmake_minimum_required(VERSION 3.0)
2 2
3project(list) 3project(list)
4 4
diff --git a/listpool/CMakeLists.txt b/listpool/CMakeLists.txt
index 6522d1f..2dcd983 100644
--- a/listpool/CMakeLists.txt
+++ b/listpool/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.16) 1cmake_minimum_required(VERSION 3.0)
2 2
3project(listpool) 3project(listpool)
4 4
diff --git a/log/CMakeLists.txt b/log/CMakeLists.txt
index 490c78c..eed76f4 100644
--- a/log/CMakeLists.txt
+++ b/log/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.16) 1cmake_minimum_required(VERSION 3.0)
2 2
3add_library(log 3add_library(log
4 src/log.c) 4 src/log.c)
diff --git a/mempool/CMakeLists.txt b/mempool/CMakeLists.txt
index 1ff4ff1..fe3e2a5 100644
--- a/mempool/CMakeLists.txt
+++ b/mempool/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.16) 1cmake_minimum_required(VERSION 3.0)
2 2
3project(mempool) 3project(mempool)
4 4
diff --git a/timer/CMakeLists.txt b/timer/CMakeLists.txt
index d915163..6d8846a 100644
--- a/timer/CMakeLists.txt
+++ b/timer/CMakeLists.txt
@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 3.10) 1cmake_minimum_required(VERSION 3.0)
2 2
3project(timer) 3project(timer)
4 4