commit c800d41895cb5420592136d833fb189a024ea0a6 Author: Vitor Fernandes Date: Sat Jun 10 22:23:26 2017 +0100 initial project import from KDevelop diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..229ef39 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +project(cpplab) + +add_executable(cpplab main.cpp) + +install(TARGETS cpplab RUNTIME DESTINATION bin) diff --git a/cpplab.kdev4 b/cpplab.kdev4 new file mode 100644 index 0000000..5fd0edb --- /dev/null +++ b/cpplab.kdev4 @@ -0,0 +1,4 @@ +[Project] +Name=cpplab +Manager=KDevCMakeManager +VersionControl=kdevgit 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; +}