initial project import from KDevelop
This commit is contained in:
commit
e97b3a24c4
3 changed files with 16 additions and 0 deletions
6
CMakeLists.txt
Normal file
6
CMakeLists.txt
Normal 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
6
main.cpp
Normal 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
4
testgame.kdev4
Normal file
|
@ -0,0 +1,4 @@
|
|||
[Project]
|
||||
Name=testgame
|
||||
Manager=KDevCMakeManager
|
||||
VersionControl=kdevgit
|
Loading…
Reference in a new issue