Skip to content

Commit

Permalink
fix 32bit architecture detection
Browse files Browse the repository at this point in the history
  • Loading branch information
adrpo committed Aug 30, 2018
1 parent 134ecff commit e8f50b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMEdit/OMEditGUI/OMEditGUI.pro
Expand Up @@ -113,7 +113,7 @@ win32 {
QMAKE_CXXFLAGS += -g
QMAKE_LFLAGS_RELEASE = -rdynamic
}
equals(QT_ARCH, i386)|equals(QT_ARCH, i686) { # 32-bit
equals(QT_ARCH, i386)|equals(QT_ARCH, i486)|equals(QT_ARCH, i586)|equals(QT_ARCH, i686) { # 32-bit
LIBS += -latomic -lboost_atomic
}
}
Expand Down

0 comments on commit e8f50b1

Please sign in to comment.