This commit is contained in:
Johannes Maier
2024-01-05 16:59:46 +01:00
parent 91ca5f9e63
commit 1ef96d8206
3 changed files with 21 additions and 0 deletions

9
.gitignore vendored
View File

@@ -50,3 +50,12 @@ modules.order
Module.symvers Module.symvers
Mkfile.old Mkfile.old
dkms.conf dkms.conf
# custom stuff
cmake-build-debug
cmake-build-release
build
/.idea
/.vscode

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.27)
project(project C)
set(CMAKE_C_STANDARD 17)
add_executable(project main.c)

6
main.c Normal file
View File

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