summaryrefslogtreecommitdiffhomepage
path: root/NetEx/CMakeLists.txt
blob: 8cf742e80090b9f64b64066c52fae8fb3bb80c58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
	)
target_include_directories(
	NetEx
	PUBLIC .
	)