Skip to content

Commit 7adf843

Browse files
committed
Upgraded cmake minimal version
1 parent 12d7e22 commit 7adf843

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# The full license is in the file LICENSE, distributed with this software. #
88
############################################################################
99

10-
cmake_minimum_required(VERSION 3.4.3)
10+
cmake_minimum_required(VERSION 3.20)
1111
project(xeus-sqlite)
1212

1313
set(XEUS_SQLITE_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include)
@@ -379,4 +379,4 @@ if(EMSCRIPTEN)
379379
"$<TARGET_FILE_DIR:xsqlite>/xsqlite.js"
380380
"$<TARGET_FILE_DIR:xsqlite>/xsqlite.wasm"
381381
DESTINATION ${CMAKE_INSTALL_BINDIR})
382-
endif()
382+
endif()

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.1)
1+
cmake_minimum_required(VERSION 3.20)
22

33
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
44
project(xeus_sqlite-test)

test/downloadGTest.cmake.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
# The full license is in the file LICENSE, distributed with this software. #
77
############################################################################
88

9-
cmake_minimum_required(VERSION 2.8.2)
9+
cmake_minimum_required(VERSION 3.20)
1010

1111
project(googletest-download NONE)
1212

1313
include(ExternalProject)
1414
ExternalProject_Add(googletest
1515
GIT_REPOSITORY https://github.com/google/googletest.git
16-
GIT_TAG release-1.8.0
16+
GIT_TAG v1.17.0
1717
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src"
1818
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build"
1919
CONFIGURE_COMMAND ""

0 commit comments

Comments
 (0)