commit 649fdb795f78e6b223a2312f7567bbe3bd31419b Author: blue Date: Mon Apr 18 23:19:56 2022 +0300 Initial import diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d557ab2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(stories) + +add_executable(stories main.cpp) + +install(TARGETS stories RUNTIME DESTINATION bin) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..8bb47f1 --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char **argv) { + std::cout << "Hello, world!" << std::endl; + return 0; +} diff --git a/stories.kdev4 b/stories.kdev4 new file mode 100644 index 0000000..7be0aa1 --- /dev/null +++ b/stories.kdev4 @@ -0,0 +1,3 @@ +[Project] +Name=stories +Manager=KDevCMakeManager