-
Notifications
You must be signed in to change notification settings - Fork 4
/
eiffel_sudoku.ecf
63 lines (63 loc) · 2.67 KB
/
eiffel_sudoku.ecf
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
<?xml version="1.0" encoding="ISO-8859-1"?>
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-11-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-11-0 http://www.eiffel.com/developers/xml/configuration-1-11-0.xsd" name="eiffel_sudoku" uuid="8D4DEF42-D791-4D86-B284-90B110952EF2">
<target name="eiffel_sudoku">
<root cluster="gui" class="APPLICATION" feature="make_and_launch"/>
<option warning="true" full_class_checking="false" is_attached_by_default="false" void_safety="none" syntax="transitional">
<assertions precondition="true" postcondition="true" check="true" invariant="true" loop="true" supplier_precondition="true"/>
</option>
<library name="base" location="$ISE_LIBRARY\library\base\base.ecf"/>
<library name="net" location="$ISE_LIBRARY\library\net\net.ecf"/>
<library name="testing" location="$ISE_LIBRARY\library\testing\testing.ecf"/>
<library name="time" location="$ISE_LIBRARY\library\time\time-safe.ecf"/>
<library name="vision2" location="$ISE_LIBRARY\library\vision2\vision2.ecf"/>
<cluster name="ai" location=".\ai\">
<file_rule>
<exclude>/.git$</exclude>
<exclude>/EIFGENs$</exclude>
</file_rule>
<tests name="ai_test" location=".\ai\ai_test\"/>
</cluster>
<cluster name="controller" location=".\controller\">
<file_rule>
<exclude>/.git$</exclude>
<exclude>/EIFGENs$</exclude>
</file_rule>
</cluster>
<cluster name="gui" location=".\gui\">
<file_rule>
<exclude>/.git$</exclude>
<exclude>/EIFGENs$</exclude>
</file_rule>
<cluster name="gui_test" location=".\gui\gui_test\"/>
</cluster>
<cluster name="model" location=".\model\">
<file_rule>
<exclude>/.git$</exclude>
<exclude>/EIFGENs$</exclude>
</file_rule>
<tests name="model_tests" location=".\model\model_tests\"/>
<cluster name="multiplayer" location=".\model\multiplayer\">
<cluster name="multiplayer_tests" location=".\model\multiplayer\multiplayer_tests\"/>
</cluster>
</cluster>
<cluster name="network" location=".\network\">
<file_rule>
<exclude>/.git$</exclude>
<exclude>/EIFGENs$</exclude>
</file_rule>
<tests name="network_tests" location=".\network\network_tests\"/>
</cluster>
<cluster name="save_load" location=".\save_load\">
<tests name="save_load_test" location=".\save_load\save_load_test\"/>
</cluster>
<cluster name="score" location=".\score\">
<cluster name="score_test" location=".\score\score_test\"/>
</cluster>
<cluster name="solver" location=".\solver\">
<file_rule>
<exclude>/.git$</exclude>
<exclude>/EIFGENs$</exclude>
</file_rule>
</cluster>
</target>
</system>