GillesDebunne / libQGLViewer

libQGLViewer is an open source C++ library based on Qt that eases the creation of OpenGL 3D viewers.
Other
241 stars 94 forks source link

CMake build updated to work with Windows VS2019 (vc-142) #79

Closed dennis2society closed 11 months ago

dennis2society commented 11 months ago

This PR updates the CMakeLists.txt to allow an easy CMake configuration of the project in Windows. The main challenge was to pass NOMINMAX to the VS projects to properly use std::min/max instead of the macros defined in minwindef.h and to ignore the VC warning 4996.

Additionally I had to add two changes suggested here: Pull request by @bjornplitz https://github.com/GillesDebunne/libQGLViewer/pull/71 Funnily this was only necessary for building with Qt6 on Windows.

On Windows it is now only necessary to open the libQGLViewer repo folder with CMake-Gui and set either Qt5 or Qt6 dir. Qt6 also requires setting the Qt6GuiTools cmake folder.

The Linux build can now be done like this:

cmake -B build/ -D CMAKE_BUILD_TYPE=Release
cmake --build build/

This will build everything inside the build folder.

dennis2society commented 11 months ago

Superseded by PR https://github.com/GillesDebunne/libQGLViewer/pull/80