update project file to only use no overpainting under Windows and -lGLU under *nix

Tue, 21 May 2013 14:06:06 +0300

author
Santeri Piippo <crimsondusk64@gmail.com>
date
Tue, 21 May 2013 14:06:06 +0300
changeset 231
6ee9917b79f8
parent 230
43d722c255d3
child 232
4e44c92e21dd

update project file to only use no overpainting under Windows and -lGLU under *nix

ldforge.pro file | annotate | diff | comparison | revisions
--- 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

mercurial