mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-07 03:58:38 -04:00
Fixed Debian build on Bionic
This commit is contained in:
parent
f86afff3e8
commit
03441bdd6c
@ -2,6 +2,15 @@ project(daemonsink)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
||||
|
||||
if (HAS_SSSE3)
|
||||
message(STATUS "DaemonSink: use SSSE3 SIMD" )
|
||||
elseif (HAS_NEON)
|
||||
message(STATUS "DaemonSink: use Neon SIMD" )
|
||||
else()
|
||||
message(STATUS "DaemonSink: Unsupported architecture")
|
||||
return()
|
||||
endif()
|
||||
|
||||
set(daemonsink_SOURCES
|
||||
daemonsink.cpp
|
||||
daemonsinkgui.cpp
|
||||
|
@ -2,6 +2,15 @@ project(daemonsource)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
||||
|
||||
if (HAS_SSSE3)
|
||||
message(STATUS "DaemonSource: use SSSE3 SIMD" )
|
||||
elseif (HAS_NEON)
|
||||
message(STATUS "DaemonSource: use Neon SIMD" )
|
||||
else()
|
||||
message(STATUS "DaemonSource: Unsupported architecture")
|
||||
return()
|
||||
endif()
|
||||
|
||||
set(daemonsource_SOURCES
|
||||
daemonsource.cpp
|
||||
daemonsourcethread.cpp
|
||||
|
Loading…
Reference in New Issue
Block a user