Initialize project

master
Markus Koch 2019-07-20 14:22:48 +02:00
commit 2024871cb5
4 changed files with 19 additions and 0 deletions

1
.gitignore vendored 100644
View File

@ -0,0 +1 @@
*.user

4
CMakeLists.txt 100644
View File

@ -0,0 +1,4 @@
cmake_minimum_required(VERSION 2.8)
project(yacos)
add_executable(${PROJECT_NAME} "main.c")

7
README.MD 100644
View File

@ -0,0 +1,7 @@
# Yet Another Check-Out System
Or yacos, for short.
RFID tagged items go in, RFID badge goes in, happy user goes out... with l00t!
# License
This program is licensed under a GNU GPL V2 license.

7
main.c 100644
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
}