From 57b50f47a925ef89625dd60ed2820e4e3edeadc3 Mon Sep 17 00:00:00 2001 From: f4exb Date: Mon, 7 Nov 2016 19:01:52 +0100 Subject: [PATCH] Windows build: set SSE options for all modulator plugins --- plugins/channeltx/modam/modam.pro | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/channeltx/modam/modam.pro b/plugins/channeltx/modam/modam.pro index e33564037..35b6413b1 100644 --- a/plugins/channeltx/modam/modam.pro +++ b/plugins/channeltx/modam/modam.pro @@ -10,12 +10,15 @@ CONFIG += plugin QT += core gui widgets multimedia TARGET = modam -INCLUDEPATH += $$PWD -INCLUDEPATH += ../../../sdrbase +DEFINES += USE_SSE2=1 +QMAKE_CXXFLAGS += -msse2 DEFINES += USE_SSE4_1=1 QMAKE_CXXFLAGS += -msse4.1 +INCLUDEPATH += $$PWD +INCLUDEPATH += ../../../sdrbase + CONFIG(Release):build_subdir = release CONFIG(Debug):build_subdir = debug