File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
interpreter/cling/lib/Utils Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,8 @@ if(MSVC)
8181 math (EXPR VS_VERSION "${VC_MAJOR} - 3" )
8282 elseif (MSVC_VERSION LESS 1950)
8383 math (EXPR VS_VERSION "${VC_MAJOR} - 2" )
84+ elseif (MSVC_VERSION LESS 1960)
85+ math (EXPR VS_VERSION "${VC_MAJOR} - 1" )
8486 else ()
8587 message (FATAL_ERROR "MSVC_VERSION ${MSVC_VERSION} not implemented" )
8688 endif ()
Original file line number Diff line number Diff line change @@ -386,6 +386,8 @@ static int GetVisualStudioVersionCompiledWith() {
386386 return 16 ;
387387#elif (_MSC_VER < 1950)
388388 return 17 ;
389+ #elif (_MSC_VER < 1960)
390+ return 18 ;
389391#else
390392 #error "Unsupported/Untested _MSC_VER"
391393 // As of now this is what is should be...have fun!
Original file line number Diff line number Diff line change @@ -938,6 +938,7 @@ if(ROOT_pyroot_FOUND)
938938 )
939939 file (GLOB requires_tensorflow RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
940940 machine_learning/RBatchGenerator_TensorFlow.py
941+ machine_learning/TMVA_CNN_Classification.py
941942 )
942943 set (fixtureLists
943944 requires_keras
You can’t perform that action at this time.
0 commit comments