From 02b00b5c075d068ca8418038df9bfa60c3381bdd Mon Sep 17 00:00:00 2001 From: kinichiro Date: Wed, 30 Mar 2016 12:52:16 +0900 Subject: [PATCH] set cmake_minimum_required to 2.8.8 `OBJECT` library type of add_library was introduced by CMake 2.8.8. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 710d8a9..5600edf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 2.8) +cmake_minimum_required (VERSION 2.8.8) include(CheckFunctionExists) include(CheckLibraryExists) include(CheckIncludeFiles)