]> git.seodisparate.com - UDPConnection/commitdiff
Init commit skeleton project
authorStephen Seo <seo.disparate@gmail.com>
Sat, 26 Jan 2019 03:52:10 +0000 (12:52 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Sat, 26 Jan 2019 03:52:10 +0000 (12:52 +0900)
.gitignore [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
src/UDPConnection.c [new file with mode: 0644]
src/UDPConnection.h [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..19cc2c4
--- /dev/null
@@ -0,0 +1,2 @@
+build*/
+compile_commands.json
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644 (file)
index 0000000..b6730b3
--- /dev/null
@@ -0,0 +1,10 @@
+cmake_minimum_required(VERSION 3.7)
+project(UDPConnection)
+
+set(UDPConnection_SOURCES
+    src/UDPConnection.c
+)
+
+add_library(UDPConnection ${UDPConnection_SOURCES})
+
+
diff --git a/src/UDPConnection.c b/src/UDPConnection.c
new file mode 100644 (file)
index 0000000..95d32e2
--- /dev/null
@@ -0,0 +1 @@
+#include "UDPConnection.h"
diff --git a/src/UDPConnection.h b/src/UDPConnection.h
new file mode 100644 (file)
index 0000000..365b317
--- /dev/null
@@ -0,0 +1,8 @@
+#ifndef UDPCONNECTION_H
+#define UDPCONNECTION_H
+
+struct UDPC_Context
+{
+};
+
+#endif