Init commit skeleton project

This commit is contained in:
Stephen Seo 2019-01-26 12:52:10 +09:00
commit ec084d85cc
4 changed files with 21 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
build*/
compile_commands.json

10
CMakeLists.txt Normal file
View file

@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.7)
project(UDPConnection)
set(UDPConnection_SOURCES
src/UDPConnection.c
)
add_library(UDPConnection ${UDPConnection_SOURCES})

1
src/UDPConnection.c Normal file
View file

@ -0,0 +1 @@
#include "UDPConnection.h"

8
src/UDPConnection.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef UDPCONNECTION_H
#define UDPCONNECTION_H
struct UDPC_Context
{
};
#endif