commit e97b3a24c49ee677566731d19b050991bcbc0263 Author: Morten Delenk Date: Sat Aug 27 20:54:34 2016 +0200 initial project import from KDevelop 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