1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-08-25 07:16:33 -04:00
sdrangel/mbelib/CMakeLists.txt
2018-11-24 21:21:04 +01:00

39 lines
771 B
CMake

project(mbelib)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(mbelib_SOURCES
${LIBMBELIBSRC}/ambe3600x2400.c
${LIBMBELIBSRC}/ambe3600x2450.c
${LIBMBELIBSRC}/ecc.c
${LIBMBELIBSRC}/imbe7100x4400.c
${LIBMBELIBSRC}/imbe7200x4400.c
${LIBMBELIBSRC}/mbelib.c
)
set(mbelib_HEADERS
${LIBMBELIBSRC}/ambe3600x2400_const.h
${LIBMBELIBSRC}/ambe3600x2450_const.h
${LIBMBELIBSRC}/ecc_const.h
${LIBMBELIBSRC}/imbe7200x4400_const.h
${LIBMBELIBSRC}/mbelib.h
${LIBMBELIBSRC}/mbelib_const.h
)
include_directories(
.
${CMAKE_CURRENT_BINARY_DIR}
${LIBMBELIBSRC}
)
add_definitions(-DQT_SHARED)
add_library(mbelib SHARED
${mbelib_SOURCES}
)
target_link_libraries(mbelib
)
install(TARGETS mbelib DESTINATION lib)