Initial import

This commit is contained in:
caskd 2019-10-10 19:24:10 +02:00
commit 2b25121dc1
No known key found for this signature in database
GPG Key ID: 79DB21404E300A27
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(learningc LANGUAGES C)
add_executable(learningc main.c)
install(TARGETS learningc RUNTIME DESTINATION bin)

3
LearningC.kdev4 Normal file
View File

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