From bbda0d8c081ed07f7147811cfc97e443becdd2fa Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 23 Mar 2014 23:40:37 -0700 Subject: [PATCH] Fix Qt build on x86 and probably NEON. --- Qt/Native.pro | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Qt/Native.pro b/Qt/Native.pro index d6766b075a..e6328abd9a 100755 --- a/Qt/Native.pro +++ b/Qt/Native.pro @@ -103,7 +103,12 @@ SOURCES += $$P/native/audio/*.cpp \ $$P/native/util/text/utf8.cpp \ $$P/native/util/text/parsers.cpp -contains(QMAKE_TARGET.arch, x86): SOURCES += $$files($$P/native/math/fast/fast_matrix_sse.c) +x86 { + SOURCES += $$files($$P/native/math/fast/fast_matrix_sse.c) +} +arm:!symbian { + SOURCES += $$files($$P/native/math/fast/fast_matrix_neon.S) +} HEADERS += $$P/native/audio/*.h \