Initial import
This commit is contained in:
commit
51e84a8f49
|
@ -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)
|
|
@ -0,0 +1,8 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
puts("Hello, World!");
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
[Project]
|
||||||
|
Name=study_cpp
|
||||||
|
Manager=KDevCMakeManager
|
Loading…
Reference in New Issue