Initial import

This commit is contained in:
Arseniy Romenskiy 2024-09-28 02:56:14 +03:00
commit cf03a245f2
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(game_tower LANGUAGES C)
add_executable(game_tower main.c)
install(TARGETS game_tower RUNTIME DESTINATION bin)

3
GAME_TOWER.kdev4 Normal file
View file

@ -0,0 +1,3 @@
[Project]
Name=GAME_TOWER
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;
}