Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thomas
VTK
Commits
9e0b3ec9
Commit
9e0b3ec9
authored
6 years ago
by
David E. DeMarle
Browse files
Options
Downloads
Patches
Plain Diff
deprecate microsoft visual studio 2013
parent
95502905
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMake/vtkCompilerChecks.cmake
+8
-3
8 additions, 3 deletions
CMake/vtkCompilerChecks.cmake
README.md
+1
-1
1 addition, 1 deletion
README.md
with
9 additions
and
4 deletions
CMake/vtkCompilerChecks.cmake
+
8
−
3
View file @
9e0b3ec9
...
...
@@ -17,9 +17,14 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang" AND
endif
()
# Minimum compiler version check: Microsoft C/C++ >= 18.0 (aka VS 2013 aka VS 12.0)
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"MSVC"
AND
CMAKE_CXX_COMPILER_VERSION VERSION_LESS 18.0
)
message
(
FATAL_ERROR
"Microsoft Visual Studio 2013 or later is required."
)
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"MSVC"
)
if
(
CMAKE_CXX_COMPILER_VERSION VERSION_LESS 18.0
)
message
(
FATAL_ERROR
"Microsoft Visual Studio 2015 or later is required."
)
else
()
if
(
CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.0
)
message
(
DEPRECATION
"Microsoft Visual Studio 2013 is deprecated in VTK 8.2.0."
)
endif
()
endif
()
endif
()
# Minimum compiler version check: Intel C++ (ICC) >= 14
...
...
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
9e0b3ec9
...
...
@@ -63,7 +63,7 @@ Requirements
In general VTK tries to be as portable as possible; the specific configurations below are known to work and tested.
VTK supports the following C++11 compilers:
1.
Microsoft Visual Studio 201
3
or newer
1.
Microsoft Visual Studio 201
5
or newer
2.
gcc 4.8.3 or newer
3.
Clang 3.3 or newer
4.
Apple Clang 5.0 (from Xcode 5.0) or newer
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment