Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 5 additions & 21 deletions Installation/cmake/modules/CGAL_GeneratorSpecificSettings.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,11 @@ if ( NOT CGAL_GENERATOR_SPECIFIC_SETTINGS_FILE_INCLUDED )
if ( MSVC_TOOLSET_VERSION )
set(CGAL_TOOLSET "vc${MSVC_TOOLSET_VERSION}")
message( STATUS "Using VC toolset ${MSVC_TOOLSET_VERSION}." )
elseif ( MSVC14 )
set(CGAL_TOOLSET "vc140")
message( STATUS "Using VC14 compiler." )
elseif ( MSVC12 )
set(CGAL_TOOLSET "vc120")
message( STATUS "Using VC12 compiler." )
elseif ( MSVC11 )
set(CGAL_TOOLSET "vc110")
message( STATUS "Using VC11 compiler." )
elseif ( MSVC10 )
set(CGAL_TOOLSET "vc100")
message( STATUS "Using VC10 compiler." )
elseif ( MSVC90 )
set(CGAL_TOOLSET "vc90")
message( STATUS "Using VC90 compiler." )
elseif ( MSVC80 )
set(CGAL_TOOLSET "vc80")
message( STATUS "Using VC80 compiler." )
elseif ( MSVC71 )
set(CGAL_TOOLSET "vc71")
message( STATUS "Using VC71 compiler." )
elseif ( MSVC )
message( AUTHOR_WARNING
"MSVC detected but MSVC_TOOLSET_VERSION is not set. "
"CGAL_TOOLSET will not be configured. "
"This may indicate an unsupported CMake version or toolchain." )
else()
message( STATUS "Using ${CMAKE_CXX_COMPILER} compiler." )
endif()
Expand Down
Loading