antons_opengl_tutorials_book icon indicating copy to clipboard operation
antons_opengl_tutorials_book copied to clipboard

Running on Windows

Open dmitrykolesnikovich opened this issue 1 year ago • 1 comments

I created Empty C++ project and installed all the libraries with NuGet. Am I supposed to copy-paste all the examples into my empty project now to run them?

dmitrykolesnikovich avatar Feb 12 '24 13:02 dmitrykolesnikovich

Hi! You can do that one-at-a-time, that's probably quickest.

In the case of building and running all examples separately to try all the demos;

  • It's possible to have multiple Projects in one Solution share NuGet dependencies but it's a bit of busy-work to set up.
  • It's much quicker to use GCC from the command-line in this sort of case after downloading the libraries once.
  • You can also use cl from the command-line to use Visual Studio's compiler but skip all the clicking, in the same way as you would use gcc.

capnramses avatar Mar 05 '24 23:03 capnramses