1: NOTE: Cmake is now bundled with Visual Studio 2017. You don't need to install it separately anymore. -1: Install Visual Studio 2017 Community Edition. -*::https://visualstudio.microsoft.com/vs/older-downloads/ (free for all non-enterprise users) +1: Install Visual Studio 2019 Community Edition. +*::https://visualstudio.microsoft.com/vs/ (free for all non-enterprise users) *::During the installation, under Workloads->Windows check *Desktop Development with C++* *::Under the list of Optional components on the right side of the screen (where several items are already selected), check *C++/CLI support*. @@ -88,13 +88,13 @@ *::For in-source builds: {code} cd C:\scratch\condor\src -cmake -G "Visual Studio 15 2017 Win64" +cmake -G "Visual Studio 16 2019" {endcode} *:: For out-of-source builds: {code} mkdir C:\scratch\condor\src-build cd C:\scratch\condor\src-build -cmake -G "Visual Studio 15 2017 Win64" C:\scratch\condor\src +cmake -G "Visual Studio 16 2019" C:\scratch\condor\src {endcode} *::This will create Visual Studio Project and Solution files to build HTCondor. Many options can be passed to cmake, see CondorCmakeBuildOptions for more information. You can also use the cmake-gui to set options.