diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | CMakeLists.txt | 8 | ||||
| -rw-r--r-- | src/main.c | 6 |
3 files changed, 15 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..378eac2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..8691b53 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.10) +project(Gacrux LANGUAGES C) + +set(SOURCES + src/main.c +) + +add_executable(gacrux ${SOURCES}) diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..2328803 --- /dev/null +++ b/src/main.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main() { + printf("Hello World\n"); + return 0; +} |
