diff options
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/openscad.pro b/openscad.pro index 60870be..80687f0 100644 --- a/openscad.pro +++ b/openscad.pro @@ -40,8 +40,8 @@ INCLUDEPATH += src # Used when manually installing 3rd party libraries OPENSCAD_LIBDIR = $$(OPENSCAD_LIBRARIES) !isEmpty(OPENSCAD_LIBDIR) { - INCLUDEPATH = $$OPENSCAD_LIBDIR/include $$INCLUDEPATH - QMAKE_LIBDIR = $$OPENSCAD_LIBDIR/lib $$QMAKE_LIBDIR + QMAKE_INCDIR_QT = $$OPENSCAD_LIBDIR/include $$QMAKE_INCDIR_QT + QMAKE_LIBDIR_QT = $$OPENSCAD_LIBDIR/lib $$QMAKE_LIBDIR_QT } else { macx { @@ -77,6 +77,10 @@ win32 { CONFIG += qt QT += opengl +linux*:exists(/usr/lib64/libGLU*)|linux*:exists(/usr/lib/libGLU*) { + LIBS += -lGLU # Fedora + DSO +} + # Application configuration macx:CONFIG += mdi CONFIG += cgal |