From 6ae0f011239b84b6e024161b508740fe26eecfe7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Cz=C3=A9m=C3=A1n=20Barnab=C3=A1s?= <trabarni@gmail.com>
Date: Sat, 6 Dec 2014 00:49:49 +0000
Subject: [PATCH] CodeBlocks project file is added

---
 Minesweeper2D.cbp | 125 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 125 insertions(+)
 create mode 100644 Minesweeper2D.cbp

diff --git a/Minesweeper2D.cbp b/Minesweeper2D.cbp
new file mode 100644
index 0000000..938085b
--- /dev/null
+++ b/Minesweeper2D.cbp
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<CodeBlocks_project_file>
+	<FileVersion major="1" minor="6" />
+	<Project>
+		<Option title="Minesweeper2D" />
+		<Option pch_mode="2" />
+		<Option compiler="gcc" />
+		<Build>
+			<Target title="Debug">
+				<Option output="bin/Debug/Minesweeper2D" prefix_auto="1" extension_auto="1" />
+				<Option object_output="obj/Debug/" />
+				<Option type="1" />
+				<Option compiler="gcc" />
+				<Compiler>
+					<Add option="-Wall" />
+					<Add option="-pg" />
+					<Add option="-g" />
+					<Add directory="/usr/include/SDL" />
+				</Compiler>
+				<Linker>
+					<Add option="-pg" />
+				</Linker>
+			</Target>
+			<Target title="Release">
+				<Option output="bin/Release/Minesweeper2D" 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="-march=corei7-avx" />
+			<Add option="-pedantic-errors" />
+			<Add option="-pedantic" />
+			<Add option="-w" />
+			<Add option="-Wfatal-errors" />
+			<Add option="-Wextra" />
+			<Add directory="/usr/include/SDL" />
+		</Compiler>
+		<Linker>
+			<Add option="`sdl-config --libs --cflags`" />
+			<Add option="-lSDL_gfx" />
+			<Add option="-lSDL_image" />
+			<Add option="-lSDL_ttf" />
+		</Linker>
+		<Unit filename="button.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="button.h" />
+		<Unit filename="colors.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="colors.h" />
+		<Unit filename="container.h">
+			<Option target="&lt;{~None~}&gt;" />
+		</Unit>
+		<Unit filename="enums.h" />
+		<Unit filename="field.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="field.h" />
+		<Unit filename="game.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="game.h" />
+		<Unit filename="highscore.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="highscore.h" />
+		<Unit filename="init.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="init.h" />
+		<Unit filename="input.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="input.h" />
+		<Unit filename="label.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="label.h" />
+		<Unit filename="main.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="menu.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="menu.h" />
+		<Unit filename="settings.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="settings.h" />
+		<Unit filename="sound.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="sound.h">
+			<Option target="&lt;{~None~}&gt;" />
+		</Unit>
+		<Unit filename="table.c">
+			<Option compilerVar="CC" />
+		</Unit>
+		<Unit filename="table.h" />
+		<Extensions>
+			<code_completion />
+			<envvars />
+			<debugger />
+			<lib_finder disable_auto="1" />
+			<DoxyBlocks>
+				<comment_style block="0" line="0" />
+				<doxyfile_project />
+				<doxyfile_build extract_all="1" />
+				<doxyfile_warnings />
+				<doxyfile_output />
+				<doxyfile_dot />
+				<general />
+			</DoxyBlocks>
+		</Extensions>
+	</Project>
+</CodeBlocks_project_file>
-- 
GitLab