-
Notifications
You must be signed in to change notification settings - Fork 0
/
minesweeper.cbp
68 lines (68 loc) · 2.63 KB
/
minesweeper.cbp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<CodeBlocks_project_file>
<FileVersion major="1" minor="6" />
<Project>
<Option title="minesweeper" />
<Option platforms="Windows;" />
<Option compiler="gcc" />
<Build>
<Target title="minesweeper.exe">
<Option platforms="Windows;" />
<Option output="minesweeper" prefix_auto="1" extension_auto="1" />
<Option object_output="build" />
<Option type="1" />
<Option compiler="gcc" />
<Option use_console_runner="0" />
<Compiler>
<Add option="-pedantic" />
<Add option="-Wextra" />
<Add option="-Wall" />
<Add option="-std=c99" />
<Add directory="SDL2-2.0.4/i686-w64-mingw32/include" />
<Add directory="SDL2-2.0.4/i686-w64-mingw32/include/SDL2" />
<Add directory="SDL2_ttf-2.0.14/i686-w64-mingw32/include" />
</Compiler>
<Linker>
<Add option="-lmingw32 -lSDL2main -lSDL2 -lSDL2_ttf -mwindows" />
<Add directory="SDL2-2.0.4/i686-w64-mingw32/lib" />
<Add directory="SDL2_ttf-2.0.14/i686-w64-mingw32/lib" />
</Linker>
<ExtraCommands>
<Add after='cmd /c copy "$(PROJECT_DIR)SDL2-2.0.4\i686-w64-mingw32\bin\SDL2.dll" "$(PROJECT_DIR)SDL2.dll"' />
<Add after='cmd /c copy "$(PROJECT_DIR)SDL2_ttf-2.0.14\i686-w64-mingw32\bin\SDL2_ttf.dll" "$(PROJECT_DIR)SDL2_ttf.dll"' />
<Add after='cmd /c copy "$(PROJECT_DIR)SDL2_ttf-2.0.14\i686-w64-mingw32\bin\libfreetype-6.dll" "$(PROJECT_DIR)libfreetype-6.dll"' />
<Add after='cmd /c copy "$(PROJECT_DIR)SDL2_ttf-2.0.14\i686-w64-mingw32\bin\zlib1.dll" "$(PROJECT_DIR)zlib1.dll"' />
</ExtraCommands>
<MakeCommands>
<Build command="$make -f $makefile $target" />
<CompileFile command="$make -f $makefile $file" />
<Clean command="$make -f $makefile clean" />
<DistClean command="$make -f $makefile distclean$target" />
<AskRebuildNeeded command="$make -q -f $makefile $target" />
<SilentBuild command="$make -f $makefile $target > $(CMD_NULL)" />
</MakeCommands>
</Target>
</Build>
<Unit filename="src/controller.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="src/controller.h" />
<Unit filename="src/minesweeper.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="src/model.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="src/model.h" />
<Unit filename="src/view.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="src/view.h" />
<Extensions>
<code_completion />
<envvars />
<debugger />
<lib_finder disable_auto="1" />
</Extensions>
</Project>
</CodeBlocks_project_file>