2014-05-18 15:52:39 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8.9)
|
2015-06-12 06:13:53 +00:00
|
|
|
cmake_policy(SET CMP0043 OLD)
|
2014-11-05 12:34:33 +00:00
|
|
|
|
2015-03-31 17:46:29 +00:00
|
|
|
option(V4L-RTL "Use Linux Kernel RTL-SDR Source." OFF)
|
|
|
|
option(V4L-MSI "Use Linux Kernel MSI2500 Source." OFF)
|
2014-11-05 12:34:33 +00:00
|
|
|
|
2014-05-18 15:52:39 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
|
|
|
|
|
|
|
|
project(sdrangelove)
|
|
|
|
|
|
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
|
|
#set(CMAKE_BUILD_TYPE "ReleaseWithDebugInfo")
|
|
|
|
#set(CMAKE_BUILD_TYPE "Debug")
|
|
|
|
|
|
|
|
set(QT_USE_QTOPENGL TRUE)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
|
|
|
|
#find_package(Qt4 REQUIRED)
|
|
|
|
find_package(Qt5Core 5.0 REQUIRED)
|
|
|
|
find_package(Qt5Widgets 5.0 REQUIRED)
|
|
|
|
find_package(Qt5Multimedia 5.0 REQUIRED)
|
|
|
|
#find_package(QT5OpenGL 5.0 REQUIRED)
|
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
find_package(PkgConfig)
|
|
|
|
|
2015-07-20 20:51:49 +00:00
|
|
|
find_package(Boost)
|
2014-05-18 15:52:39 +00:00
|
|
|
find_package(FFTW3F)
|
|
|
|
|
2015-07-05 15:08:06 +00:00
|
|
|
IF(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64|x86")
|
|
|
|
SET(USE_SIMD "SSE2" CACHE STRING "Use SIMD instructions")
|
|
|
|
ENDIF()
|
|
|
|
|
2014-05-18 15:52:39 +00:00
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
#include(${QT_USE_FILE})
|
2014-05-20 17:35:57 +00:00
|
|
|
set( QT_DEFINITIONS "${QT_DEFINITIONS} -DQT_NO_DEBUG_OUTPUT" )
|
2014-05-18 15:52:39 +00:00
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
foreach(OUTPUTCONFIG ${CMAKE_CONFIGURATION_TYPES})
|
|
|
|
string(TOUPPER ${OUTPUTCONFIG} OUTPUTCONFIG)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_${OUTPUTCONFIG} ${CMAKE_BINARY_DIR}/bin_${OUTPUTCONFIG})
|
|
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_${OUTPUTCONFIG} ${CMAKE_BINARY_DIR}/bin_${OUTPUTCONFIG})
|
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_${OUTPUTCONFIG} ${CMAKE_BINARY_DIR}/bin_${OUTPUTCONFIG})
|
|
|
|
endforeach(OUTPUTCONFIG CMAKE_CONFIGURATION_TYPES)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
set(sdrbase_SOURCES
|
|
|
|
sdrbase/mainwindow.cpp
|
|
|
|
|
|
|
|
sdrbase/audio/audiodeviceinfo.cpp
|
|
|
|
sdrbase/audio/audiofifo.cpp
|
|
|
|
sdrbase/audio/audiooutput.cpp
|
|
|
|
|
2015-06-19 06:27:29 +00:00
|
|
|
sdrbase/dsp/afsquelch.cpp
|
2014-05-18 15:52:39 +00:00
|
|
|
sdrbase/dsp/channelizer.cpp
|
|
|
|
sdrbase/dsp/channelmarker.cpp
|
2015-06-16 02:42:37 +00:00
|
|
|
sdrbase/dsp/ctcssdetector.cpp
|
2014-05-18 15:52:39 +00:00
|
|
|
sdrbase/dsp/dspcommands.cpp
|
|
|
|
sdrbase/dsp/dspengine.cpp
|
|
|
|
sdrbase/dsp/fftengine.cpp
|
2014-06-27 16:36:13 +00:00
|
|
|
sdrbase/dsp/fftfilt.cxx
|
2014-05-18 15:52:39 +00:00
|
|
|
sdrbase/dsp/fftwindow.cpp
|
2015-07-28 21:54:17 +00:00
|
|
|
sdrbase/dsp/filesink.cpp
|
2014-05-18 15:52:39 +00:00
|
|
|
sdrbase/dsp/interpolator.cpp
|
|
|
|
sdrbase/dsp/inthalfbandfilter.cpp
|
|
|
|
sdrbase/dsp/lowpass.cpp
|
|
|
|
sdrbase/dsp/movingaverage.cpp
|
|
|
|
sdrbase/dsp/nco.cpp
|
|
|
|
sdrbase/dsp/pidcontroller.cpp
|
|
|
|
sdrbase/dsp/samplefifo.cpp
|
|
|
|
sdrbase/dsp/samplesink.cpp
|
2015-05-10 17:21:46 +00:00
|
|
|
sdrbase/dsp/nullsink.cpp
|
2015-06-23 18:05:28 +00:00
|
|
|
sdrbase/dsp/spectrumscopecombovis.cpp
|
2014-05-18 15:52:39 +00:00
|
|
|
sdrbase/dsp/scopevis.cpp
|
|
|
|
sdrbase/dsp/spectrumvis.cpp
|
|
|
|
sdrbase/dsp/threadedsamplesink.cpp
|
|
|
|
|
|
|
|
sdrbase/gui/aboutdialog.cpp
|
|
|
|
sdrbase/gui/addpresetdialog.cpp
|
|
|
|
sdrbase/gui/basicchannelsettingswidget.cpp
|
|
|
|
sdrbase/gui/buttonswitch.cpp
|
|
|
|
sdrbase/gui/channelwindow.cpp
|
2015-07-19 16:43:48 +00:00
|
|
|
sdrbase/gui/colormapper.cpp
|
2014-05-18 15:52:39 +00:00
|
|
|
sdrbase/gui/glscope.cpp
|
2015-06-22 02:16:27 +00:00
|
|
|
sdrbase/gui/glscopegui.cpp
|
2014-05-18 15:52:39 +00:00
|
|
|
sdrbase/gui/glspectrum.cpp
|
|
|
|
sdrbase/gui/glspectrumgui.cpp
|
|
|
|
sdrbase/gui/indicator.cpp
|
|
|
|
sdrbase/gui/pluginsdialog.cpp
|
|
|
|
sdrbase/gui/preferencesdialog.cpp
|
|
|
|
sdrbase/gui/presetitem.cpp
|
|
|
|
sdrbase/gui/rollupwidget.cpp
|
|
|
|
sdrbase/gui/scale.cpp
|
|
|
|
sdrbase/gui/scaleengine.cpp
|
|
|
|
sdrbase/gui/valuedial.cpp
|
|
|
|
|
|
|
|
sdrbase/dsp/samplesource/samplesource.cpp
|
|
|
|
|
|
|
|
sdrbase/plugin/pluginapi.cpp
|
|
|
|
sdrbase/plugin/plugingui.cpp
|
|
|
|
sdrbase/plugin/plugininterface.cpp
|
|
|
|
sdrbase/plugin/pluginmanager.cpp
|
|
|
|
|
|
|
|
sdrbase/settings/preferences.cpp
|
|
|
|
sdrbase/settings/preset.cpp
|
|
|
|
sdrbase/settings/settings.cpp
|
|
|
|
|
|
|
|
sdrbase/util/message.cpp
|
|
|
|
sdrbase/util/messagequeue.cpp
|
2014-11-22 21:55:35 +00:00
|
|
|
#sdrbase/util/miniz.cpp
|
2014-05-18 15:52:39 +00:00
|
|
|
sdrbase/util/simpleserializer.cpp
|
|
|
|
sdrbase/util/spinlock.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(sdrbase_HEADERS
|
|
|
|
include-gpl/mainwindow.h
|
|
|
|
|
|
|
|
include-gpl/audio/audiodeviceinfo.h
|
|
|
|
include-gpl/audio/audiofifo.h
|
|
|
|
include-gpl/audio/audiooutput.h
|
|
|
|
|
|
|
|
include-gpl/dsp/channelizer.h
|
|
|
|
include/dsp/channelmarker.h
|
2014-06-27 16:36:13 +00:00
|
|
|
include-gpl/dsp/complex.h
|
2014-05-18 15:52:39 +00:00
|
|
|
include-gpl/dsp/dspcommands.h
|
|
|
|
include-gpl/dsp/dspengine.h
|
|
|
|
include/dsp/dsptypes.h
|
|
|
|
include-gpl/dsp/fftengine.h
|
2014-06-27 16:36:13 +00:00
|
|
|
include-gpl/dsp/fftfilt.h
|
2014-05-18 15:52:39 +00:00
|
|
|
include-gpl/dsp/fftwengine.h
|
|
|
|
include-gpl/dsp/fftwindow.h
|
2015-07-28 21:54:17 +00:00
|
|
|
include-gpl/dsp/filesink.h
|
2014-06-27 16:36:13 +00:00
|
|
|
include-gpl/dsp/gfft.h
|
2014-05-18 15:52:39 +00:00
|
|
|
include-gpl/dsp/interpolator.h
|
|
|
|
include-gpl/dsp/inthalfbandfilter.h
|
|
|
|
include/dsp/kissfft.h
|
|
|
|
include-gpl/dsp/kissengine.h
|
|
|
|
include-gpl/dsp/lowpass.h
|
2014-06-27 16:36:13 +00:00
|
|
|
include-gpl/dsp/misc.h
|
2014-05-18 15:52:39 +00:00
|
|
|
include-gpl/dsp/movingaverage.h
|
|
|
|
include-gpl/dsp/nco.h
|
|
|
|
sdrbase/dsp/pidcontroller.h
|
|
|
|
include/dsp/samplefifo.h
|
|
|
|
include/dsp/samplesink.h
|
2015-05-10 17:21:46 +00:00
|
|
|
include-gpl/dsp/nullsink.h
|
2014-05-18 15:52:39 +00:00
|
|
|
include-gpl/dsp/scopevis.h
|
|
|
|
include-gpl/dsp/spectrumvis.h
|
|
|
|
include/dsp/threadedsamplesink.h
|
|
|
|
|
|
|
|
include-gpl/gui/aboutdialog.h
|
|
|
|
include-gpl/gui/addpresetdialog.h
|
|
|
|
include/gui/basicchannelsettingswidget.h
|
|
|
|
include-gpl/gui/buttonswitch.h
|
|
|
|
include-gpl/gui/channelwindow.h
|
2015-07-19 16:43:48 +00:00
|
|
|
include-gpl/gui/colormapper.h
|
2014-05-18 15:52:39 +00:00
|
|
|
include-gpl/gui/glscope.h
|
2015-06-22 02:16:27 +00:00
|
|
|
include-gpl/gui/glscopegui.h
|
2014-05-18 15:52:39 +00:00
|
|
|
include-gpl/gui/glspectrum.h
|
|
|
|
include-gpl/gui/glspectrumgui.h
|
|
|
|
include-gpl/gui/indicator.h
|
|
|
|
include-gpl/gui/physicalunit.h
|
|
|
|
include-gpl/gui/pluginsdialog.h
|
|
|
|
include-gpl/gui/preferencesdialog.h
|
|
|
|
include-gpl/gui/presetitem.h
|
|
|
|
include/gui/rollupwidget.h
|
|
|
|
include-gpl/gui/scale.h
|
|
|
|
include-gpl/gui/scaleengine.h
|
|
|
|
include-gpl/gui/valuedial.h
|
|
|
|
|
|
|
|
include/dsp/samplesource/samplesource.h
|
|
|
|
|
|
|
|
include/plugin/pluginapi.h
|
|
|
|
include/plugin/plugingui.h
|
|
|
|
include/plugin/plugininterface.h
|
|
|
|
include-gpl/plugin/pluginmanager.h
|
|
|
|
|
|
|
|
include-gpl/settings/preferences.h
|
|
|
|
include-gpl/settings/preset.h
|
|
|
|
include-gpl/settings/settings.h
|
|
|
|
|
|
|
|
include/util/export.h
|
|
|
|
include/util/message.h
|
|
|
|
include/util/messagequeue.h
|
2014-11-22 21:55:35 +00:00
|
|
|
#include/util/miniz.h
|
2014-05-18 15:52:39 +00:00
|
|
|
include/util/simpleserializer.h
|
|
|
|
include/util/spinlock.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(sdrbase_SOURCES
|
|
|
|
${sdrbase_SOURCES}
|
|
|
|
${sdrbase_HEADERS}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(sdrbase_FORMS
|
|
|
|
sdrbase/mainwindow.ui
|
|
|
|
|
|
|
|
sdrbase/gui/aboutdialog.ui
|
|
|
|
sdrbase/gui/addpresetdialog.ui
|
|
|
|
sdrbase/gui/basicchannelsettingswidget.ui
|
2015-06-22 02:16:27 +00:00
|
|
|
sdrbase/gui/glscopegui.ui
|
2014-05-18 15:52:39 +00:00
|
|
|
sdrbase/gui/glspectrumgui.ui
|
|
|
|
sdrbase/gui/pluginsdialog.ui
|
|
|
|
sdrbase/gui/preferencesdialog.ui
|
|
|
|
)
|
|
|
|
|
|
|
|
set(sdrbase_RESOURCES
|
|
|
|
sdrbase/resources/res.qrc
|
|
|
|
)
|
|
|
|
|
|
|
|
if(FFTW3F_FOUND)
|
|
|
|
set(sdrbase_SOURCES
|
|
|
|
${sdrbase_SOURCES}
|
|
|
|
sdrbase/dsp/fftwengine.cpp
|
|
|
|
)
|
|
|
|
set(sdrbase_HEADERS
|
|
|
|
${sdrbase_HEADERS}
|
|
|
|
include-gpl/dsp/fftwengine.h
|
|
|
|
)
|
|
|
|
add_definitions(-DUSE_FFTW)
|
|
|
|
include_directories(${FFTW3F_INCLUDE_DIRS})
|
|
|
|
else(FFTW3F_FOUND)
|
|
|
|
set(sdrbase_SOURCES
|
|
|
|
${sdrbase_SOURCES}
|
|
|
|
sdrbase/dsp/kissengine.cpp
|
|
|
|
include/dsp/kissfft.h
|
|
|
|
)
|
|
|
|
set(sdrbase_HEADERS
|
|
|
|
${sdrbase_HEADERS}
|
|
|
|
include-gpl/dsp/kissengine.h
|
|
|
|
)
|
|
|
|
add_definitions(-DUSE_KISSFFT)
|
|
|
|
endif(FFTW3F_FOUND)
|
|
|
|
|
|
|
|
#include(${QT_USE_FILE})
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
|
|
|
|
|
|
#qt5_wrap_cpp(sdrbase_HEADERS_MOC ${sdrbase_HEADERS})
|
|
|
|
qt5_wrap_ui(sdrbase_FORMS_HEADERS ${sdrbase_FORMS})
|
|
|
|
qt5_add_resources(sdrbase_RESOURCES_RCC ${sdrbase_RESOURCES})
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
SET(sdrbase_SOURCES ${sdrbase_SOURCES} sdrbase/resources/sdrangelove.rc)
|
|
|
|
endif(WIN32)
|
|
|
|
|
|
|
|
add_library(sdrbase SHARED
|
|
|
|
${sdrbase_SOURCES}
|
|
|
|
${sdrbase_HEADERS_MOC}
|
|
|
|
${sdrbase_FORMS_HEADERS}
|
|
|
|
${sdrbase_RESOURCES_RCC}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(sdrbase
|
|
|
|
${QT_LIBRARIES}
|
|
|
|
${OPENGL_LIBRARIES}
|
|
|
|
${LIBUSB_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
|
|
|
if(FFTW3F_FOUND)
|
|
|
|
target_link_libraries(sdrbase ${FFTW3F_LIBRARIES})
|
|
|
|
endif(FFTW3F_FOUND)
|
|
|
|
|
|
|
|
set_target_properties(sdrbase PROPERTIES DEFINE_SYMBOL "sdrangelove_EXPORTS")
|
|
|
|
|
|
|
|
qt5_use_modules(sdrbase Core Widgets OpenGL Multimedia)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_SOURCE_DIR}/include
|
|
|
|
${CMAKE_SOURCE_DIR}/include-gpl
|
|
|
|
${OPENGL_INCLUDE_DIR}
|
|
|
|
)
|
|
|
|
|
2015-07-05 15:08:06 +00:00
|
|
|
if(USE_SIMD MATCHES SSE2)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_CLANGXX)
|
|
|
|
set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -msse2" )
|
|
|
|
set( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -msse2" )
|
|
|
|
add_definitions(-DUSE_SIMD)
|
|
|
|
elseif(MSVC)
|
|
|
|
set( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /arch:SSE2" )
|
|
|
|
set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /Oi /GL /Ot /Ox /arch:SSE2" )
|
|
|
|
set( CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /LTCG" )
|
|
|
|
add_definitions (/D "_CRT_SECURE_NO_WARNINGS")
|
|
|
|
add_definitions(-DUSE_SIMD)
|
|
|
|
endif()
|
2014-05-18 15:52:39 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
set(sdrangelove_SOURCES
|
|
|
|
main.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
SET(sdrangelove_SOURCES ${sdrangelove_SOURCES} sdrbase/resources/sdrangelove.rc)
|
|
|
|
endif(WIN32)
|
|
|
|
|
|
|
|
add_executable(sdrangelove
|
|
|
|
${sdrangelove_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(sdrangelove
|
|
|
|
sdrbase
|
|
|
|
${QT_LIBRARIES}
|
|
|
|
${OPENGL_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
set_target_properties(sdrangelove PROPERTIES LINK_FLAGS_DEBUG "/SUBSYSTEM:CONSOLE")
|
|
|
|
set_target_properties(sdrangelove PROPERTIES COMPILE_DEFINITIONS_DEBUG "_CONSOLE")
|
|
|
|
set_target_properties(sdrangelove PROPERTIES LINK_FLAGS_RELWITHDEBINFO "/SUBSYSTEM:CONSOLE")
|
|
|
|
set_target_properties(sdrangelove PROPERTIES COMPILE_DEFINITIONS_RELWITHDEBINFO "_CONSOLE")
|
|
|
|
set_target_properties(sdrangelove PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:windows /ENTRY:mainCRTStartup")
|
|
|
|
set_target_properties(sdrangelove PROPERTIES LINK_FLAGS_MINSIZEREL "/SUBSYSTEM:windows /ENTRY:mainCRTStartup")
|
|
|
|
endif(WIN32)
|
|
|
|
|
|
|
|
qt5_use_modules(sdrangelove Widgets Multimedia)
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
add_subdirectory(plugins)
|