# HG changeset patch # User Santeri Piippo # Date 1369134366 -10800 # Node ID 6ee9917b79f8b07d97d972308f2f1a6600035c60 # Parent 43d722c255d3de21d8ca9b06997a2a465a9def30 update project file to only use no overpainting under Windows and -lGLU under *nix diff -r 43d722c255d3 -r 6ee9917b79f8 ldforge.pro --- a/ldforge.pro Tue May 21 14:02:18 2013 +0300 +++ b/ldforge.pro Tue May 21 14:06:06 2013 +0300 @@ -16,5 +16,11 @@ QMAKE_CXXFLAGS += -std=c++0x QT += opengl -LIBS += -lGLU -DEFINES += "NO_OVERPAINTING" \ No newline at end of file + +win32 { + DEFINES += "NO_OVERPAINTING" +} + +unix { + LIBS += -lGLU +} \ No newline at end of file