Initial import

This commit is contained in:
Hmtsai 2023-10-22 13:23:42 +08:00
commit 51e84a8f49
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(study_cpp LANGUAGES C)
add_executable(study_cpp main.c)
install(TARGETS study_cpp RUNTIME DESTINATION bin)

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;
}

3
study_cpp.kdev4 Normal file
View File

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