aboutsummaryrefslogtreecommitdiff
path: root/C++/How to C++ (02.12.2017)/Meh
diff options
context:
space:
mode:
Diffstat (limited to 'C++/How to C++ (02.12.2017)/Meh')
-rwxr-xr-xC++/How to C++ (02.12.2017)/Meh/Meh.cbp43
-rwxr-xr-xC++/How to C++ (02.12.2017)/Meh/Meh.depend4
-rwxr-xr-xC++/How to C++ (02.12.2017)/Meh/Meh.layout10
-rwxr-xr-xC++/How to C++ (02.12.2017)/Meh/main.cpp8
4 files changed, 65 insertions, 0 deletions
diff --git a/C++/How to C++ (02.12.2017)/Meh/Meh.cbp b/C++/How to C++ (02.12.2017)/Meh/Meh.cbp
new file mode 100755
index 0000000..d84c450
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/Meh/Meh.cbp
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<CodeBlocks_project_file>
+ <FileVersion major="1" minor="6" />
+ <Project>
+ <Option title="Meh" />
+ <Option pch_mode="2" />
+ <Option compiler="gcc" />
+ <Build>
+ <Target title="Debug">
+ <Option output="bin/Debug/Meh" prefix_auto="1" extension_auto="1" />
+ <Option object_output="obj/Debug/" />
+ <Option type="1" />
+ <Option compiler="gcc" />
+ <Compiler>
+ <Add option="-g" />
+ </Compiler>
+ </Target>
+ <Target title="Release">
+ <Option output="bin/Release/Meh" prefix_auto="1" extension_auto="1" />
+ <Option object_output="obj/Release/" />
+ <Option type="1" />
+ <Option compiler="gcc" />
+ <Compiler>
+ <Add option="-O2" />
+ </Compiler>
+ <Linker>
+ <Add option="-s" />
+ </Linker>
+ </Target>
+ </Build>
+ <Compiler>
+ <Add option="-Wall" />
+ <Add option="-fexceptions" />
+ </Compiler>
+ <Unit filename="main.cpp" />
+ <Extensions>
+ <code_completion />
+ <envvars />
+ <debugger />
+ <lib_finder disable_auto="1" />
+ </Extensions>
+ </Project>
+</CodeBlocks_project_file>
diff --git a/C++/How to C++ (02.12.2017)/Meh/Meh.depend b/C++/How to C++ (02.12.2017)/Meh/Meh.depend
new file mode 100755
index 0000000..1b5c285
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/Meh/Meh.depend
@@ -0,0 +1,4 @@
+# depslib dependency file v1.0
+1512233808 source:e:\all projects\how to c++\meh\main.cpp
+ <iostream>
+
diff --git a/C++/How to C++ (02.12.2017)/Meh/Meh.layout b/C++/How to C++ (02.12.2017)/Meh/Meh.layout
new file mode 100755
index 0000000..158b7c7
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/Meh/Meh.layout
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<CodeBlocks_layout_file>
+ <FileVersion major="1" minor="0" />
+ <ActiveTarget name="Debug" />
+ <File name="main.cpp" open="1" top="1" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+ <Cursor>
+ <Cursor1 position="55" topLine="0" />
+ </Cursor>
+ </File>
+</CodeBlocks_layout_file>
diff --git a/C++/How to C++ (02.12.2017)/Meh/main.cpp b/C++/How to C++ (02.12.2017)/Meh/main.cpp
new file mode 100755
index 0000000..f13ac21
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/Meh/main.cpp
@@ -0,0 +1,8 @@
+#include <iostream>
+using namespace std;
+
+int main()
+{
+ cout << "Hello everyone! \n How are you doing today?";
+ return 0;
+}