Initial import
This commit is contained in:
commit
13d1a2de0a
3 changed files with 18 additions and 0 deletions
7
CMakeLists.txt
Normal file
7
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
cmake_minimum_required(VERSION 3.0)
|
||||||
|
|
||||||
|
project(memtest LANGUAGES C)
|
||||||
|
|
||||||
|
add_executable(memtest main.c)
|
||||||
|
|
||||||
|
install(TARGETS memtest RUNTIME DESTINATION bin)
|
||||||
8
main.c
Normal file
8
main.c
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
puts("Hello, World!");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
3
memtest.kdev4
Normal file
3
memtest.kdev4
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[Project]
|
||||||
|
Name=memtest
|
||||||
|
Manager=KDevCMakeManager
|
||||||
Loading…
Add table
Add a link
Reference in a new issue