diff options
| -rw-r--r-- | CC4Group.kdev4 | 3 | ||||
| -rw-r--r-- | CMakeLists.txt | 6 | ||||
| -rw-r--r-- | main.cpp | 6 |
3 files changed, 15 insertions, 0 deletions
diff --git a/CC4Group.kdev4 b/CC4Group.kdev4 new file mode 100644 index 0000000..063ba2a --- /dev/null +++ b/CC4Group.kdev4 @@ -0,0 +1,3 @@ +[Project] +Name=CC4Group +Manager=KDevCMakeManager diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d8a6458 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 2.6) +project(cc4group) + +add_executable(cc4group main.cpp) + +install(TARGETS cc4group 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 <iostream> + +int main(int argc, char **argv) { + std::cout << "Hello, world!" << std::endl; + return 0; +} |
