commit 6dd53bf00ed7475a1db806d74840b1abc13493dc Author: Arseniy Date: Fri Jun 13 13:32:17 2025 +0300 Initial import diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5a0dbe6 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(webdisk_c LANGUAGES C) + +add_executable(webdisk_c main.c) + +install(TARGETS webdisk_c RUNTIME DESTINATION bin) diff --git a/WebDisk_C.kdev4 b/WebDisk_C.kdev4 new file mode 100644 index 0000000..e86e2dd --- /dev/null +++ b/WebDisk_C.kdev4 @@ -0,0 +1,3 @@ +[Project] +Name=WebDisk_C +Manager=KDevCMakeManager diff --git a/main.c b/main.c new file mode 100644 index 0000000..66f31f8 --- /dev/null +++ b/main.c @@ -0,0 +1,8 @@ +#include +#include + +int main(int argc, char *argv[]) +{ + puts("Hello, World!"); + return 0; +}