1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-07-06 02:45:26 -04:00

Removed useless CPU flags. Fixes issue #720

This commit is contained in:
f4exb 2020-11-23 01:44:52 +01:00
parent ea59f8b35e
commit 1d5742d3b9
5 changed files with 0 additions and 45 deletions

View File

@ -1,14 +1,5 @@
project(remotesink) project(remotesink)
if (HAS_SSSE3)
message(STATUS "RemoteSink: use SSSE3 SIMD" )
elseif (HAS_NEON)
message(STATUS "RemoteSink: use Neon SIMD" )
else()
message(STATUS "RemoteSink: Unsupported architecture")
return()
endif()
set(remotesink_SOURCES set(remotesink_SOURCES
remotesink.cpp remotesink.cpp
remotesinkbaseband.cpp remotesinkbaseband.cpp

View File

@ -1,14 +1,5 @@
project(filesource) project(filesource)
if (HAS_SSSE3)
message(STATUS "RemoteSource: use SSSE3 SIMD" )
elseif (HAS_NEON)
message(STATUS "RemoteSource: use Neon SIMD" )
else()
message(STATUS "RemoteSource: Unsupported architecture")
return()
endif()
set(filesource_SOURCES set(filesource_SOURCES
filesource.cpp filesource.cpp
filesourcebaseband.cpp filesourcebaseband.cpp

View File

@ -1,14 +1,5 @@
project(remotesource) project(remotesource)
if (HAS_SSSE3)
message(STATUS "RemoteSource: use SSSE3 SIMD" )
elseif (HAS_NEON)
message(STATUS "RemoteSource: use Neon SIMD" )
else()
message(STATUS "RemoteSource: Unsupported architecture")
return()
endif()
set(remotesource_SOURCES set(remotesource_SOURCES
remotesource.cpp remotesource.cpp
remotesourcebaseband.cpp remotesourcebaseband.cpp

View File

@ -1,14 +1,5 @@
project(remoteoutput) project(remoteoutput)
if (HAS_SSSE3)
message(STATUS "RemoteFEC: use SSSE3 SIMD" )
elseif (HAS_NEON)
message(STATUS "RemoteFEC: use Neon SIMD" )
else()
message(STATUS "RemoteFEC: Unsupported architecture")
return()
endif()
set(remoteoutput_SOURCES set(remoteoutput_SOURCES
remoteoutput.cpp remoteoutput.cpp
remoteoutputplugin.cpp remoteoutputplugin.cpp

View File

@ -1,14 +1,5 @@
project(remoteinput) project(remoteinput)
if (HAS_SSSE3)
message(STATUS "RemoteInput: use SSSE3 SIMD" )
elseif (HAS_NEON)
message(STATUS "RemoteInput: use Neon SIMD" )
else()
message(STATUS "RemoteInput: Unsupported architecture")
return()
endif()
set(remoteinput_SOURCES set(remoteinput_SOURCES
remoteinputbuffer.cpp remoteinputbuffer.cpp
remoteinputudphandler.cpp remoteinputudphandler.cpp