Initial import

This commit is contained in:
Nicholas George 2022-08-24 21:55:25 -05:00
commit ec31cf0fc3
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(oldkeeperfiler)
add_executable(oldkeeperfiler main.cpp)
install(TARGETS oldkeeperfiler RUNTIME DESTINATION bin)

3
OldKeeperFiler.kdev4 Normal file
View File

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

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;
}