Skip to content

Commit 21c371a

Browse files
committed
fix: bump cmake minimum version
1 parent 9cff22b commit 21c371a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
66
# or copy at http://opensource.org/licenses/MIT)
7-
cmake_minimum_required(VERSION 3.5)
7+
cmake_minimum_required(VERSION 3.8)
88
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") # custom CMake modules like FindSQLiteCpp
99
project(SQLiteCpp VERSION 3.3.3)
1010

examples/example2/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
66
# or copy at http://opensource.org/licenses/MIT)
7-
cmake_minimum_required(VERSION 3.1) # for "CMAKE_CXX_STANDARD" version
7+
cmake_minimum_required(VERSION 3.8) # for "CMAKE_CXX_STANDARD" version
88
project(SQLiteCpp_Example VERSION 2.0)
99

1010
# SQLiteC++ 3.x now requires C++11 compiler

0 commit comments

Comments
 (0)