initial project import from KDevelop

This commit is contained in:
Morten Delenk 2016-08-27 20:54:34 +02:00
commit e97b3a24c4
No known key found for this signature in database
GPG key ID: 3F818D0F65DCB490
3 changed files with 16 additions and 0 deletions

6
CMakeLists.txt Normal file
View file

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

4
testgame.kdev4 Normal file
View file

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