Hi, there’s an another way to build the ITK library for c++, without using VS2019, due to the issues that it has?
You can use VS2015 and VS2017.
1 Like
When you install VS2019, you can enable VS2015 or VS2017 toolset components. This allows you to use the VS2019 IDE but ITK-compatible VS2015/VS2017 compilers.
You can specify toolset when you configure your CMake project in "Optional toolset to use (argument to -T)" field: for VS2015 use v140
, for VS2017 use v141
.
2 Likes