initial project import from KDevelop

This commit is contained in:
Vitor Fernandes 2017-06-10 22:23:26 +01:00
commit c800d41895
3 changed files with 15 additions and 0 deletions

5
CMakeLists.txt Normal file
View file

@ -0,0 +1,5 @@
project(cpplab)
add_executable(cpplab main.cpp)
install(TARGETS cpplab RUNTIME DESTINATION bin)

4
cpplab.kdev4 Normal file
View file

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

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;
}