mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-08 09:36:02 -05:00
32 lines
492 B
CMake
32 lines
492 B
CMake
project(dsdplus)
|
|
|
|
set(dsdplus_SOURCES
|
|
dmr_voice.cpp
|
|
dsd_decoder.cpp
|
|
dsd_filters.cpp
|
|
dsd_opts.cpp
|
|
dsd_state.cpp
|
|
)
|
|
|
|
set(dsdplus_HEADERS
|
|
dmr_voice.h
|
|
dsd_decoder.h
|
|
dsd_filters.h
|
|
dsd_opts.h
|
|
dsd_state.h
|
|
)
|
|
|
|
include_directories(
|
|
${PROJECT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${LIBMBE_INCLUDE_DIR}
|
|
)
|
|
|
|
add_library(dsdplus SHARED
|
|
${dsdplus_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(dsdplus ${LIBMBE_LIBRARY})
|
|
|
|
install(TARGETS dsdplus DESTINATION lib)
|