mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 10:05:46 -05:00
Removed useless CPU flags. Fixes issue #720
This commit is contained in:
parent
ea59f8b35e
commit
1d5742d3b9
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user