Raise cmake_minimum_required: 2.8 -> 3.4
authorFangrui Song <i@maskray.me>
Mon, 19 Nov 2018 00:35:21 +0000 (16:35 -0800)
committerFangrui Song <i@maskray.me>
Sun, 2 Dec 2018 18:10:36 +0000 (10:10 -0800)
See CMP0065, otherwise -rdynamic is unconditionally added to linked executable. These .dynsym symbols are not really useful.

CMakeLists.txt

index 68a9cb0d2c6aa1e30072c7f4adff11e437207e19..71eb24ddfe4f546a685976d2ca56c3aabe68b30e 100644 (file)
@@ -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)