This commit is contained in:
Johannes Maier
2024-01-05 17:06:49 +01:00
parent 91ca5f9e63
commit 1ef96d8206
3 changed files with 21 additions and 0 deletions
+9
View File
@@ -50,3 +50,12 @@ modules.order
Module.symvers
Mkfile.old
dkms.conf
# custom stuff
cmake-build-debug
cmake-build-release
build
/.idea
/.vscode
+6
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
View File
@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}