summaryrefslogtreecommitdiffstats
path: root/plugins/samplesource/osmosdr/CMakeLists.txt
blob: b538c6caff1e5f5075267fa71bbe8bc673b9b588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
project(osmosdr)

set(osmosdr_SOURCES
	osmosdrgui.cpp
	osmosdrinput.cpp
	osmosdrplugin.cpp
	osmosdrthread.cpp
)

set(osmosdr_HEADERS
	osmosdrgui.h
	osmosdrinput.h
	osmosdrplugin.h
	osmosdrthread.h
)

set(osmosdr_FORMS
	osmosdrgui.ui
)

include_directories(
	.
	${CMAKE_CURRENT_BINARY_DIR}
	${CMAKE_SOURCE_DIR}/include
	${CMAKE_SOURCE_DIR}/include-gpl
	${LIBOSMOSDR_INCLUDE_DIR}
)

#include(${QT_USE_FILE})
add_definitions(${QT_DEFINITIONS})
add_definitions(-DQT_PLUGIN)
add_definitions(-DQT_SHARED)

#qt4_wrap_cpp(osmosdr_HEADERS_MOC ${osmosdr_HEADERS})
qt5_wrap_ui(osmosdr_FORMS_HEADERS ${osmosdr_FORMS})

add_library(inputosmosdr SHARED
	${osmosdr_SOURCES}
	${osmosdr_HEADERS_MOC}
	${osmosdr_FORMS_HEADERS}
)

target_link_libraries(inputosmosdr
	${QT_LIBRARIES}
	${LIBOSMOSDR_LIBRARIES}
	${LIBUSB_LIBRARIES}
	sdrbase
)

qt5_use_modules(inputosmosdr Core Widgets OpenGL Multimedia)