Building

Visual Studio

MSBuild C++ Example.sln /p:Configuration=Release /p:Platform=x64

CMake (Optional)

mkdir build && cd build
cmake ..
cmake --build . --config Release

Output

The compiled executable will be in:

x64/Release/C++ Example.exe