commit ec084d85cc013f117a21690089344a42819ffc26 Author: Stephen Seo Date: Sat Jan 26 12:52:10 2019 +0900 Init commit skeleton project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..19cc2c4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +build*/ +compile_commands.json diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..b6730b3 --- /dev/null +++ b/CMakeLists.txt @@ -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 index 0000000..95d32e2 --- /dev/null +++ b/src/UDPConnection.c @@ -0,0 +1 @@ +#include "UDPConnection.h" diff --git a/src/UDPConnection.h b/src/UDPConnection.h new file mode 100644 index 0000000..365b317 --- /dev/null +++ b/src/UDPConnection.h @@ -0,0 +1,8 @@ +#ifndef UDPCONNECTION_H +#define UDPCONNECTION_H + +struct UDPC_Context +{ +}; + +#endif