summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2018-07-01 19:23:02 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2018-07-01 19:23:02 +0200
commit20740c7acc81f34c49bca508c5d83357d02e48be (patch)
treecdd50c74dd6b18c669d27bac5d45f0603f293f3e
downloadcc4group-20740c7acc81f34c49bca508c5d83357d02e48be.tar.gz
cc4group-20740c7acc81f34c49bca508c5d83357d02e48be.zip
Initial
-rw-r--r--CC4Group.kdev43
-rw-r--r--CMakeLists.txt6
-rw-r--r--main.cpp6
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;
+}