initial project import from KDevelop

This commit is contained in:
Kevin Whitaker
2017-01-27 19:29:54 -05:00
commit ca53e4d706
3 changed files with 16 additions and 0 deletions

4
Arbitrateor.kdev4 Normal file
View File

@@ -0,0 +1,4 @@
[Project]
Name=Arbitrateor
Manager=KDevCMakeManager
VersionControl=kdevgit

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 2.6)
project(arbitrateor)
add_executable(arbitrateor main.cpp)
install(TARGETS arbitrateor 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;
}