(Projects that use CMake) Build with CMake for 32-bit and 64-bit

[CMake]

To compile binaries with CMake 3.13 or newer, run the following commands:

cmake -G “Visual Studio 16 2019” -A Win32 -S \path_to_source\ -B “build32”
cmake -G “Visual Studio 16 2019” -A x64 -S \path_to_source\ -B “build64”

Run the UI editor to configure options:

cmake-gui ..

And then build the libraries:
cmake –build build32 –config Release
cmake –build build64 –config Release

Visual Studio Strings:

“Visual Studio 14 2015”

“Visual Studio 15 2017”

“Visual Studio 16 2019”

[POCO Windows 32-bit and 64-bit build notes]