From ec084d85cc013f117a21690089344a42819ffc26 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sat, 26 Jan 2019 12:52:10 +0900 Subject: [PATCH] Init commit skeleton project --- .gitignore | 2 ++ CMakeLists.txt | 10 ++++++++++ src/UDPConnection.c | 1 + src/UDPConnection.h | 8 ++++++++ 4 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 src/UDPConnection.c create mode 100644 src/UDPConnection.h 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