sdrangel/qrtplib/CMakeLists.txt

89 lines
1.7 KiB
CMake
Raw Normal View History

2018-02-26 19:35:16 -05:00
project(qrtplib)
set (qrtplib_HEADERS
2018-03-05 10:40:53 -05:00
rtcpapppacket.h
rtcpbyepacket.h
rtcpcompoundpacket.h
rtcpcompoundpacketbuilder.h
rtcppacket.h
rtcppacketbuilder.h
rtcprrpacket.h
rtcpscheduler.h
rtcpsdesinfo.h
rtcpsdespacket.h
rtcpsrpacket.h
rtcpunknownpacket.h
rtpaddress.h
rtpcollisionlist.h
rtpconfig.h
rtpdefines.h
rtpendian.h
rtperrors.h
rtpinternalsourcedata.h
rtpkeyhashtable.h
rtppacket.h
rtppacketbuilder.h
rtprandom.h
rtprandomrand48.h
rtprandomrands.h
rtprandomurandom.h
rtprawpacket.h
rtpsession.h
rtpsessionparams.h
rtpsessionsources.h
rtpsourcedata.h
rtpsources.h
rtpstructs.h
rtptimeutilities.h
rtptransmitter.h
rtptypes_win.h
rtptypes.h
rtpudptransmitter.h
rtpsocketutil.h
)
2018-02-26 19:35:16 -05:00
set(qrtplib_SOURCES
2018-03-05 10:40:53 -05:00
rtcpapppacket.cpp
rtcpbyepacket.cpp
rtcpcompoundpacket.cpp
rtcpcompoundpacketbuilder.cpp
rtcppacketbuilder.cpp
rtcprrpacket.cpp
rtcpscheduler.cpp
rtcpsdesinfo.cpp
rtcpsdespacket.cpp
rtcpsrpacket.cpp
rtpaddress.cpp
rtpcollisionlist.cpp
rtperrors.cpp
rtpinternalsourcedata.cpp
rtppacket.cpp
rtppacketbuilder.cpp
rtprandom.cpp
rtprandomrand48.cpp
rtprandomrands.cpp
rtprandomurandom.cpp
rtpsession.cpp
rtpsessionparams.cpp
rtpsessionsources.cpp
rtpsourcedata.cpp
rtpsources.cpp
rtptimeutilities.cpp
rtpudptransmitter.cpp
)
2018-02-26 19:35:16 -05:00
include_directories(
${CMAKE_SOURCE_DIR}/exports
2018-02-26 19:35:16 -05:00
)
add_library(qrtplib SHARED
${qrtplib_SOURCES}
)
target_link_libraries(qrtplib
Qt::Core
Qt::Network
2018-02-26 19:35:16 -05:00
)
install(TARGETS qrtplib DESTINATION ${INSTALL_LIB_DIR})