State of building Cinder apps with CMake on Windows

@Gazoo I’m not sure what combo of events has led to your linker issues, but I suggest starting clean (git clean -dfx will do the trick from within a git versioned folder) and doing it all from cmake.

I’ve actually been adjusting how I configure cmake projects to simplify the number of commands and folder traversing, below is what I’ve lately been using:

cd %cinder dir%
cmake -S . -B ./build -G "Visual Studio 16 2019"
cmake --build build --config Release
cmake --build build --config Debug

cd %some sample folder%
cmake -S proj/cmake/ -B ./build -G "Visual Studio 16 2019"
start build/SampleProject.sln

I think you can also leave the `-G “Visual Studio 16 2019” thing off if all you have is one copy of VS installed on your machine, it will just use that. Ages ago it would default to nmake but things are bit more streamlined to use MSBuild tools now.

Cheers,
Rich