commit ec31cf0fc3e055fa72e93bc10f7f0565c8c99f79 Author: Nicholas George Date: Wed Aug 24 21:55:25 2022 -0500 Initial import diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..78f31dd --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(oldkeeperfiler) + +add_executable(oldkeeperfiler main.cpp) + +install(TARGETS oldkeeperfiler RUNTIME DESTINATION bin) diff --git a/OldKeeperFiler.kdev4 b/OldKeeperFiler.kdev4 new file mode 100644 index 0000000..b2d4700 --- /dev/null +++ b/OldKeeperFiler.kdev4 @@ -0,0 +1,3 @@ +[Project] +Name=OldKeeperFiler +Manager=KDevCMakeManager 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; +}