Initial commit

This commit is contained in:
Pünkösd Marcell 2020-11-02 19:50:40 +01:00
commit b64ce22c59
3 changed files with 18 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
.idea/
CMakeFiles/
cmake-build-debug/
cmake_install.cmake
CMakeCache.txt
Makefile

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.13)
project(caff_previewer C)
set(CMAKE_C_STANDARD 11)
add_executable(caff_previewer main.c)

6
main.c Normal file
View File

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