diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-12-17 03:51:51 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-12-17 03:51:51 (GMT) |
commit | d289903ee3b9ddefa1c6d25bf9a608547a520430 (patch) | |
tree | c19d8e77471ff9837e08da34f2fd1f1440ddffdb | |
parent | 6bccf5be43af0947103cdd6ebac5a30615f55c84 (diff) | |
parent | a7ebe941998768fe1015fc1b6d528690bdf19701 (diff) |
Merge branch 'qmakemod' of github.com:donbright/openscad into qmakemod
-rw-r--r-- | openscad.pro | 7 | ||||
-rw-r--r-- | win32.pri | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/openscad.pro b/openscad.pro index 160eaa1..e38251a 100644 --- a/openscad.pro +++ b/openscad.pro @@ -77,8 +77,13 @@ win32 { CONFIG += qt QT += opengl +# Fedora Linux + DSO fix linux*:exists(/usr/lib64/libGLU*)|linux*:exists(/usr/lib/libGLU*) { - LIBS += -lGLU # Fedora + DSO + LIBS += -lGLU +} + +CONFIG(mingw-cross-env) { + include(mingw-cross-env.pri) } # Application configuration @@ -1,6 +1,6 @@ -# win32-specific general settings +# win32-specific MSVC compiler general settings -win32 { +win32*msvc* { #configure additional directories INCLUDEPATH += $$(MPIRDIR) INCLUDEPATH += $$(MPFRDIR) @@ -17,4 +17,4 @@ win32 { # lexer uses strdup() & other POSIX stuff QMAKE_CXXFLAGS += -D_CRT_NONSTDC_NO_DEPRECATE -}
\ No newline at end of file +} |