mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 07:51:14 -05:00
25 lines
319 B
CMake
25 lines
319 B
CMake
project(fcdlib)
|
|
|
|
set(fcdlib_SOURCES
|
|
fcdtraits.cpp
|
|
fcdproplusconst.cpp
|
|
fcdproconst.cpp
|
|
)
|
|
|
|
set(fcdlib_HEADERS
|
|
fcdtraits.h
|
|
fcdproplusconst.h
|
|
fcdproconst.h
|
|
)
|
|
|
|
include_directories(
|
|
)
|
|
|
|
add_library(fcdlib SHARED
|
|
${fcdlib_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(fcdlib)
|
|
|
|
install(TARGETS fcdlib DESTINATION ${INSTALL_LIB_DIR})
|