Skip to content

Commit

Permalink
Change minimum cmake version to 3.6 (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
JorgenPo committed Jul 7, 2019
1 parent 6cbdefd commit f44c7f2
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion cmake/Libraries.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)

set(LINKLIBS_LIBRARIES "")
set(LINKLIBS_INCLUDE_DIRS "")
Expand Down
2 changes: 1 addition & 1 deletion cmake/Platform.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)
# Detecting build system

message(INFO " Size of void is ${CMAKE_SIZEOF_VOID_P}")
Expand Down
2 changes: 1 addition & 1 deletion cmake/SetMainTargetSettings.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)
# Setting a main target (Engine) properties

# Remove 'lib' prefix on windows builds
Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Examples subproject
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)

# Function to setup example
include(SetupExample.cmake)
Expand Down
2 changes: 1 addition & 1 deletion examples/SetupExample.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)

# Adds a new target with a given example
function(SetupExample exampleName)
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Initialization example
# Author: george popoff <[email protected]>
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)

set(PROJECT_NAME SimpleExample)

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)
# Plugins subproject

# Function to setup a plugin
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/SetupPlugin.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)

# Adds a new target with a given plugin
function(SetupPlugin pluginName)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/gl/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)

# GL Plugin
# Author: george popoff <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/modelParsers/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(3.6)
cmake_minimum_required(VERSION 3.6)

# Model parsers plugin
# Provides some model parsers
Expand Down

0 comments on commit f44c7f2

Please sign in to comment.