From e97b3a24c49ee677566731d19b050991bcbc0263 Mon Sep 17 00:00:00 2001 From: Morten Delenk Date: Sat, 27 Aug 2016 20:54:34 +0200 Subject: [PATCH] initial project import from KDevelop --- CMakeLists.txt | 6 ++++++ main.cpp | 6 ++++++ testgame.kdev4 | 4 ++++ 3 files changed, 16 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main.cpp create mode 100644 testgame.kdev4 diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..bfc5b7a --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 2.6) +project(testgame) + +add_executable(testgame main.cpp) + +install(TARGETS testgame 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/testgame.kdev4 b/testgame.kdev4 new file mode 100644 index 0000000..382727f --- /dev/null +++ b/testgame.kdev4 @@ -0,0 +1,4 @@ +[Project] +Name=testgame +Manager=KDevCMakeManager +VersionControl=kdevgit