Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
robotran
mbsysc
Commits
754af94e
Commit
754af94e
authored
Jan 28, 2021
by
Nicolas Docquier
Browse files
Merge branch 'CMake_min_version' into 'dev'
Update Cmake minimum version Closes #251 See merge request robotran/mbsysc!399
parents
6265b1cb
dcda2b36
Changes
16
Hide whitespace changes
Inline
Side-by-side
MBsysC/CMakeLists.txt
View file @
754af94e
...
@@ -8,11 +8,7 @@
...
@@ -8,11 +8,7 @@
# CMake for compiling MBsysC, MBsysC interfaces and MBsysC Addons
# CMake for compiling MBsysC, MBsysC interfaces and MBsysC Addons
#
#
if
(
UNIX
)
cmake_minimum_required
(
VERSION 3.4
)
cmake_minimum_required
(
VERSION 2.8.7
)
else
()
cmake_minimum_required
(
VERSION 3.4
)
endif
()
include
(
ExternalProject
)
include
(
ExternalProject
)
...
...
MBsysC/mbs_app/screen_capture/CMakeLists.txt
View file @
754af94e
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
# CMake minimum version
# CMake minimum version
cmake_minimum_required
(
VERSION
2.8.12
)
cmake_minimum_required
(
VERSION
3.4
)
# project name
# project name
project
(
ScreenCapture
)
project
(
ScreenCapture
)
...
...
MBsysC/mbs_app/test_vrml_loader/CMakeLists.txt
View file @
754af94e
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
# CMake minimum version
# CMake minimum version
cmake_minimum_required
(
VERSION
2.8.12
)
cmake_minimum_required
(
VERSION
3.4
)
# project name
# project name
project
(
TestVrml
)
project
(
TestVrml
)
...
...
MBsysC/mbs_app/user_file_generation/CMakeLists.txt
View file @
754af94e
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
#
#
# CMake minimum version
# CMake minimum version
cmake_minimum_required
(
VERSION
2.8.7
)
cmake_minimum_required
(
VERSION
3.4
)
# project name
# project name
project
(
GEN_MDS_USER
)
project
(
GEN_MDS_USER
)
...
...
MBsysC/mbs_app/vtk_output/CMakeLists.txt
View file @
754af94e
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
# CMake minimum version
# CMake minimum version
cmake_minimum_required
(
VERSION
2.8.12
)
cmake_minimum_required
(
VERSION
3.4
)
# project name
# project name
project
(
VtkOutput
)
project
(
VtkOutput
)
...
...
MBsysC/mbs_common/CMakeLists.txt
View file @
754af94e
...
@@ -2,11 +2,7 @@
...
@@ -2,11 +2,7 @@
# Authors: Timothee Habra & Nicolas Van der Noot
# Authors: Timothee Habra & Nicolas Van der Noot
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
if
(
UNIX
)
cmake_minimum_required
(
VERSION 3.4
)
cmake_minimum_required
(
VERSION 2.8.7
)
else
()
cmake_minimum_required
(
VERSION 3.4
)
endif
()
project
(
MBsysC
)
project
(
MBsysC
)
...
...
MBsysC/mbs_common/mbs_add_on/mbs_lmgc/CMakeLists.txt
View file @
754af94e
cmake_minimum_required
(
VERSION
2.8.7
)
cmake_minimum_required
(
VERSION
3.4
)
project
(
MBsysC_mbs_lmgc
)
project
(
MBsysC_mbs_lmgc
)
...
...
MBsysC/mbs_common/mbs_load_xml/CMakeLists.txt
View file @
754af94e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Authors: Timothee Habra
# Authors: Timothee Habra
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
cmake_minimum_required
(
VERSION
2.8.7
)
cmake_minimum_required
(
VERSION
3.4
)
project
(
MBsysC_loadXML
)
project
(
MBsysC_loadXML
)
...
...
MBsysC/mbs_common/mbs_module/CMakeLists.txt
View file @
754af94e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Authors: Timothee Habra
# Authors: Timothee Habra
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
cmake_minimum_required
(
VERSION
2.8.7
)
cmake_minimum_required
(
VERSION
3.4
)
project
(
MBsysC_module
)
project
(
MBsysC_module
)
...
...
MBsysC/mbs_common/mbs_numerics/CMakeLists.txt
View file @
754af94e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Authors: Timothee Habra
# Authors: Timothee Habra
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
cmake_minimum_required
(
VERSION
2.8.7
)
cmake_minimum_required
(
VERSION
3.4
)
project
(
MBsysC_numerics
)
project
(
MBsysC_numerics
)
...
...
MBsysC/mbs_common/mbs_realtime/CMakeLists.txt
View file @
754af94e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Authors: Timothee Habra
# Authors: Timothee Habra
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
cmake_minimum_required
(
VERSION
2.8.7
)
cmake_minimum_required
(
VERSION
3.4
)
project
(
MBsysC_realtime
)
project
(
MBsysC_realtime
)
...
...
MBsysC/mbs_common/mbs_realtime/open_gl/process/CMakeLists.txt
View file @
754af94e
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
# CMake minimum version
# CMake minimum version
cmake_minimum_required
(
VERSION
2.8.12
)
cmake_minimum_required
(
VERSION
3.4
)
# project name
# project name
project
(
OpenGLRobotranProcess
)
project
(
OpenGLRobotranProcess
)
...
...
MBsysC/mbs_common/mbs_utilities/CMakeLists.txt
View file @
754af94e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Authors: Timothee Habra
# Authors: Timothee Habra
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
# CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT
cmake_minimum_required
(
VERSION
2.8.7
)
cmake_minimum_required
(
VERSION
3.4
)
project
(
MBsysC_utilities
)
project
(
MBsysC_utilities
)
...
...
MBsysC/mbs_interface/mbs_python/CMakeLists.txt
View file @
754af94e
cmake_minimum_required
(
VERSION
2.8.0
)
cmake_minimum_required
(
VERSION
3.4
)
project
(
"Python Interface for MBsysC"
)
project
(
"Python Interface for MBsysC"
)
message
(
"Starting the
${
PROJECT_NAME
}
"
)
message
(
"Starting the
${
PROJECT_NAME
}
"
)
...
...
MBsysC/mbs_interface/mbs_simulink/CMakeLists.txt
View file @
754af94e
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# CMake minimum version
# CMake minimum version
cmake_minimum_required
(
VERSION
2.8.7
)
cmake_minimum_required
(
VERSION
3.4
)
# project name
# project name
project
(
MBsysC_SF_dirdyn
)
project
(
MBsysC_SF_dirdyn
)
...
...
MBsysC/opengl_mbs/CMakeLists.txt
View file @
754af94e
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
# CMake minimum version
# CMake minimum version
cmake_minimum_required
(
VERSION
2.8.12
)
cmake_minimum_required
(
VERSION
3.4
)
# project name
# project name
project
(
OpenGLRobotran
)
project
(
OpenGLRobotran
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment