mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 12:29:32 +08:00
24 lines
378 B
Plaintext
24 lines
378 B
Plaintext
# CMakeLists.txt mediaServer directory
|
|
|
|
# headers
|
|
SET(MEDIA_SERVER_HDRS
|
|
DynamicRTSPServer.hh
|
|
)
|
|
|
|
# source files for mediaServer
|
|
SET(MEDIA_SERVER_SRCS
|
|
DynamicRTSPServer.cpp
|
|
live555MediaServer.cpp
|
|
)
|
|
|
|
ADD_EXECUTABLE(mediaServer ${MEDIA_SERVER_HDRS} ${MEDIA_SERVER_SRCS})
|
|
TARGET_LINK_LIBRARIES(
|
|
mediaServer
|
|
BasicUsageEnvironment
|
|
groupsock
|
|
liveMedia
|
|
UsageEnvironment
|
|
ws2_32
|
|
winmm
|
|
)
|