commit eae6b90a2acaef42e8c72350c408de0f4401849a Author: blue Date: Sun Sep 4 13:14:42 2022 +0300 Initial import diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..705e980 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(storage) + +add_executable(storage main.cpp) + +install(TARGETS storage 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/storage.kdev4 b/storage.kdev4 new file mode 100644 index 0000000..57f15c2 --- /dev/null +++ b/storage.kdev4 @@ -0,0 +1,3 @@ +[Project] +Name=storage +Manager=KDevCMakeManager