summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFangrui Song <i@maskray.me>2018-11-18 16:35:21 -0800
committerFangrui Song <i@maskray.me>2018-12-02 10:10:36 -0800
commitb9679f355308ea5d3848b1229077fd02c0ddc8ae (patch)
treeae40fc1addee4ca531e183e0d0d6647c8e0b54fd
parentc5f8d135cf3555404f1c4df5617f94f4fc2bac87 (diff)
Raise cmake_minimum_required: 2.8 -> 3.4
See CMP0065, otherwise -rdynamic is unconditionally added to linked executable. These .dynsym symbols are not really useful.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 68a9cb0..71eb24d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
project(lwext4 C)
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.4)
include_directories(${PROJECT_BINARY_DIR}/include)