This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
eiffel:faq:cluster [2018/01/01 00:02] jonathan |
eiffel:faq:cluster [2018/01/01 00:18] (current) jonathan |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Add a Cluster (recursive) ====== | + | ====== Add a Cluster (recursive) and Class====== |
- | In Settings below, a cluster (e.g. cluster "root") is set to recursive. | + | Each cluster (to group a set of classes) can be associated with its own folder. In Settings below, a cluster (e.g. cluster "root") is set to recursive. Below we show how to add a new sub-cluster ''model'' to the ''root'' cluster. |
{{:eiffel:faq:faq:cluster2.png|}} | {{:eiffel:faq:faq:cluster2.png|}} | ||
+ | |||
+ | ===== Add a Cluster ===== | ||
+ | |||
For the recursive case, use the terminal (or windows explorer/finder) to create subfolders in cluster "root". To add cluster ''model''" | For the recursive case, use the terminal (or windows explorer/finder) to create subfolders in cluster "root". To add cluster ''model''" | ||
Line 17: | Line 20: | ||
application.e model/ | application.e model/ | ||
</code> | </code> | ||
+ | |||
+ | ===== Add a Class ===== | ||
+ | |||
On compiling, the new cluster name ''model'' appears. Right click on ''model'' to add a new class in that cluster. | On compiling, the new cluster name ''model'' appears. Right click on ''model'' to add a new class in that cluster. | ||
Line 22: | Line 28: | ||
{{:eiffel:faq:faq:cluster3.png|}} | {{:eiffel:faq:faq:cluster3.png|}} | ||
+ | If we add the file FOO, we obtain | ||
+ | <code> | ||
+ | project/ | ||
+ | ├── project.ecf | ||
+ | └── root | ||
+ | ├── application.e | ||
+ | └── model | ||
+ | └── foo.e | ||
+ | </code> | ||
+ | |||
+ | ===== The ECF File ===== | ||
+ | |||
+ | The ECF file looks as follows | ||
+ | |||
+ | <code xml> | ||
+ | <?xml version="1.0" encoding="ISO-8859-1"?> | ||
+ | <system xmlns="http://www.eiffel.com/developers/xml/configuration-1-16-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-16-0 http://www.eiffel.com/developers/xml/configuration-1-16-0.xsd" name="project" uuid="1DB9100F-683A-438B-ABD2-601B82C4E570"> | ||
+ | <target name="project"> | ||
+ | <root class="APPLICATION" feature="make"/> | ||
+ | <file_rule> | ||
+ | <exclude>/CVS$</exclude> | ||
+ | <exclude>/EIFGENs$</exclude> | ||
+ | <exclude>/\.git$</exclude> | ||
+ | <exclude>/\.svn$</exclude> | ||
+ | </file_rule> | ||
+ | <option warning="true"> | ||
+ | <assertions precondition="true" postcondition="true" check="true" invariant="true" loop="true" supplier_precondition="true"/> | ||
+ | </option> | ||
+ | <setting name="console_application" value="true"/> | ||
+ | <capability> | ||
+ | <concurrency support="scoop"/> | ||
+ | <void_safety support="all" use="all"/> | ||
+ | </capability> | ||
+ | <precompile name="base_pre" location="$ISE_PRECOMP\base-scoop-safe.ecf"/> | ||
+ | <library name="base" location="$ISE_LIBRARY\library\base\base.ecf"/> | ||
+ | <cluster name="root" location=".\root" recursive="true"/> | ||
+ | </target> | ||
+ | </system> | ||
+ | </code> |