summaryrefslogtreecommitdiffhomepage
path: root/NetEx
diff options
context:
space:
mode:
Diffstat (limited to 'NetEx')
-rw-r--r--NetEx/CMakeLists.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/NetEx/CMakeLists.txt b/NetEx/CMakeLists.txt
new file mode 100644
index 0000000..8cf742e
--- /dev/null
+++ b/NetEx/CMakeLists.txt
@@ -0,0 +1,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 .
+ )