commit 2024871cb51f6c86ebaf94dd012ec1a7c581d602 Author: Markus Koch Date: Sat Jul 20 14:22:48 2019 +0200 Initialize project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8a9d35c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.user diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1d4f7cc --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 2.8) + +project(yacos) +add_executable(${PROJECT_NAME} "main.c") diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..0d55c3e --- /dev/null +++ b/README.MD @@ -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. diff --git a/main.c b/main.c new file mode 100644 index 0000000..754935c --- /dev/null +++ b/main.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + printf("Hello World!\n"); + return 0; +}