diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..40bd390 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.15) +project(Informatikprojekt C) + +set(CMAKE_C_STANDARD 11) + +add_executable(Informatikprojekt main.c) \ No newline at end of file diff --git a/main.c b/main.c new file mode 100644 index 0000000..7d38eaf --- /dev/null +++ b/main.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + printf("Hello, World!\n"); + return 0; +}