summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--CMakeLists.txt8
-rw-r--r--main.cpp5
3 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f35e3c0
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*build*
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..a6c35f3
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,8 @@
+
+project(msc-scriptie)
+
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --std=c++11")
+
+add_executable(msc-scriptie
+ main.cpp
+)
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..fc047f7
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,5 @@
+
+int main()
+{
+ return 0;
+}