mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 00:19:01 +08:00
18 lines
279 B
Plaintext
18 lines
279 B
Plaintext
# CMakeLists.txt proxyServer directory
|
|
|
|
# source files for proxyServer
|
|
SET(PROXY_SERVER_SRCS
|
|
live555ProxyServer.cpp
|
|
)
|
|
|
|
ADD_EXECUTABLE(proxyServer ${PROXY_SERVER_SRCS})
|
|
TARGET_LINK_LIBRARIES(
|
|
proxyServer
|
|
BasicUsageEnvironment
|
|
groupsock
|
|
liveMedia
|
|
UsageEnvironment
|
|
ws2_32
|
|
winmm
|
|
)
|