blob: ccb0f0164db87f6efd1b7cea093935bad7388bad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
project(NetEx)
add_library(
NetEx
STATIC
HttpClient.cpp
HttpServer.cpp
HttpServlet.cpp
HttpServletExec.cpp
NetAddr.cpp
NetClient.cpp
NetGram.cpp
NetHost.cpp
NetLayer.cpp
NetLink.cpp
NetMsg.cpp
NetPeer.cpp
NetServer.cpp
NetSock.cpp
)
set(WINDOWSSDK_PATH "C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um")
target_include_directories(
NetEx
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
PUBLIC ${WINDOWSSDK_PATH} # FIXME
)
target_link_libraries(
NetEx
PUBLIC FoundationEx
)
|