commit ee8cd78b43cdce78710513550c5d4111c4bc5287 Author: BuildTools Date: Sat Nov 4 22:09:26 2023 +0300 Initial import diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..6abc886 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(c_chess LANGUAGES C) + +add_executable(c_chess main.c) + +install(TARGETS c_chess RUNTIME DESTINATION bin) diff --git a/C_chess.kdev4 b/C_chess.kdev4 new file mode 100644 index 0000000..9518b5b --- /dev/null +++ b/C_chess.kdev4 @@ -0,0 +1,3 @@ +[Project] +Name=C_chess +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; +}