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)
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
remotesink.cpp
remotesinkbaseband.cpp

View File

@ -1,14 +1,5 @@
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
filesource.cpp
filesourcebaseband.cpp

View File

@ -1,14 +1,5 @@
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
remotesource.cpp
remotesourcebaseband.cpp

View File

@ -1,14 +1,5 @@
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
remoteoutput.cpp
remoteoutputplugin.cpp

View File

@ -1,14 +1,5 @@
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
remoteinputbuffer.cpp
remoteinputudphandler.cpp