summaryrefslogtreecommitdiffhomepage
path: root/NetEx
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-09-28 21:51:34 +0200
committerAki <please@ignore.pl>2021-09-28 21:51:34 +0200
commitf9bc90d009d7c96d97e4bfa7a5679e01dddd5dfd (patch)
treef96b45323d384ec41e4d6cd3fdce42b2cfe0332b /NetEx
parent3a507e08b1d4e5970b27401a7e6517570d529400 (diff)
downloadstarshatter-f9bc90d009d7c96d97e4bfa7a5679e01dddd5dfd.zip
starshatter-f9bc90d009d7c96d97e4bfa7a5679e01dddd5dfd.tar.gz
starshatter-f9bc90d009d7c96d97e4bfa7a5679e01dddd5dfd.tar.bz2
Created best-guess cmake stubs
Structure of the project as whole is... questionable. It looks that the directories are intermingled even if they appear separated. This is a first guess to have at least something in place.
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 .
+ )