Skip to content

Commit

Permalink
cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
chiappa committed Dec 5, 2019
1 parent 1450e3d commit 5d6c193
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.15)
project(BlackBox)

set(CMAKE_CXX_STANDARD 14)
Expand Down
2 changes: 1 addition & 1 deletion game/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.15)

include(FetchContent)

Expand Down
2 changes: 1 addition & 1 deletion res/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.15)
project(resources LANGUAGES)

add_library(${PROJECT_NAME} EXCLUDE_FROM_ALL)
Expand Down
2 changes: 1 addition & 1 deletion src/Engine/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.12)
cmake_minimum_required(VERSION 3.15)
project(BlackBox CXX)
###################################################

Expand Down
2 changes: 1 addition & 1 deletion src/Engine/Math/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.12)
cmake_minimum_required(VERSION 3.15)
project(Math CXX)
###################################################

Expand Down
2 changes: 1 addition & 1 deletion src/Engine/Render/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.12)
cmake_minimum_required(VERSION 3.15)
project(OpenGlBackend CXX)
###################################################
add_library(${PROJECT_NAME} INTERFACE IMPORTED)
Expand Down
2 changes: 1 addition & 1 deletion src/Engine/ScriptSystem/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.12)
cmake_minimum_required(VERSION 3.15)
project(ScriptSystem CXX)
###################################################
add_library(${PROJECT_NAME})
Expand Down
2 changes: 1 addition & 1 deletion src/Engine/Window/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.12)
cmake_minimum_required(VERSION 3.15)
project(Window CXX)
###################################################
add_library(${PROJECT_NAME})
Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.15)
project(Launcher CXX)

set(CMAKE_CXX_STANDARD 17)
Expand Down

0 comments on commit 5d6c193

Please sign in to comment.