Init commit skeleton project
This commit is contained in:
commit
ec084d85cc
4 changed files with 21 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
build*/
|
||||
compile_commands.json
|
10
CMakeLists.txt
Normal file
10
CMakeLists.txt
Normal 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
1
src/UDPConnection.c
Normal file
|
@ -0,0 +1 @@
|
|||
#include "UDPConnection.h"
|
8
src/UDPConnection.h
Normal file
8
src/UDPConnection.h
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef UDPCONNECTION_H
|
||||
#define UDPCONNECTION_H
|
||||
|
||||
struct UDPC_Context
|
||||
{
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue