Initial import

This commit is contained in:
Blue 2022-04-18 23:19:56 +03:00
commit 649fdb795f
3 changed files with 16 additions and 0 deletions

7
CMakeLists.txt Normal file
View File

@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.0)
project(stories)
add_executable(stories main.cpp)
install(TARGETS stories RUNTIME DESTINATION bin)

6
main.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <iostream>
int main(int argc, char **argv) {
std::cout << "Hello, world!" << std::endl;
return 0;
}

3
stories.kdev4 Normal file
View File

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