Initial import

This commit is contained in:
BuildTools 2023-11-04 22:09:26 +03:00
commit ee8cd78b43
3 changed files with 18 additions and 0 deletions

7
CMakeLists.txt Normal file
View file

@ -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)

3
C_chess.kdev4 Normal file
View file

@ -0,0 +1,3 @@
[Project]
Name=C_chess
Manager=KDevCMakeManager

8
main.c Normal file
View file

@ -0,0 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
puts("Hello, World!");
return 0;
}