diff options
-rw-r--r-- | openscad.pro | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/openscad.pro b/openscad.pro index 747a823..96250fd 100644 --- a/openscad.pro +++ b/openscad.pro @@ -127,6 +127,11 @@ netbsd* { QMAKE_CXXFLAGS_WARN_ON += -Wno-sign-compare } +# force the use of outdated libraries +CONFIG(skip-version-check) { + DEFINES += OPENSCAD_SKIP_VERSION_CHECK +} + # Application configuration macx:CONFIG += mdi CONFIG += cgal @@ -150,12 +155,6 @@ CONFIG(mingw-cross-env) { include(mingw-cross-env.pri) } -# force the use of outdated libraries -CONFIG(skip-version-check) { - DEFINES += OPENSCAD_SKIP_VERSION_CHECK -} - - win32 { FLEXSOURCES = src/lexer.l BISONSOURCES = src/parser.y |