Skip to content

Commit f6f6636

Browse files
authored
Bump cmake minimum required version to 3.10 (#200)
1 parent 67c109d commit f6f6636

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

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.5)
1+
cmake_minimum_required (VERSION 3.10)
22

33
project (LuaBridge)
44

Source/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.5)
1+
cmake_minimum_required (VERSION 3.10)
22

33
set (LUABRIDGE_HEADERS
44
${CMAKE_CURRENT_SOURCE_DIR}/LuaBridge/Array.h

Tests/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.5)
1+
cmake_minimum_required (VERSION 3.10)
22

33
# ====================================================== Locations
44

Tests/Lua/LuaJIT.2.1/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Upgrade to luajit-2.1 by 9chu
77
# Modified 2022 by kunitoki
88

9-
CMAKE_MINIMUM_REQUIRED(VERSION 3.6 FATAL_ERROR)
9+
CMAKE_MINIMUM_REQUIRED(VERSION 3.10 FATAL_ERROR)
1010

1111
project(Lua C ASM)
1212

Tests/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Linux and MacOS
44

5-
Have CMake 3.5+ and a compiler supporting C++17 installed.
5+
Have CMake 3.10+ and a compiler supporting C++17 installed.
66

77
Run cmake to generate Makefiles:
88

@@ -33,7 +33,7 @@ Run tests from the `build` directory:
3333

3434
## macOS
3535

36-
Have CMake 3.5+ and Xcode 11+ installed.
36+
Have CMake 3.10+ and Xcode 11+ installed.
3737

3838
Run cmake to generate Makefiles:
3939

@@ -64,7 +64,7 @@ Run tests from the `build` directory:
6464

6565
# Windows
6666

67-
Have CMake 3.5+ and MSVC 2019 installed.
67+
Have CMake 3.10+ and MSVC 2019 installed.
6868

6969
Run cmake to generate MSVC solution and project files (run `cmake -G` to see all variants):
7070

0 commit comments

Comments
 (0)