summaryrefslogtreecommitdiffstats
path: root/bank-eiffel
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-05-20 14:34:34 +0200
committermanuel <manuel@mausz.at>2011-05-20 14:34:34 +0200
commit3f74a5d2fe1bb3b8aa3b947eaa9954c9f141b3bf (patch)
tree6b07f2adbdad270ef8764e67b305a94d5fcd1929 /bank-eiffel
parente5ac16d5eef39a00a6d5db40f13465730f8cadb4 (diff)
downloadfoop-3f74a5d2fe1bb3b8aa3b947eaa9954c9f141b3bf.tar.gz
foop-3f74a5d2fe1bb3b8aa3b947eaa9954c9f141b3bf.tar.bz2
foop-3f74a5d2fe1bb3b8aa3b947eaa9954c9f141b3bf.zip
adding eiffel subdirectory
Diffstat (limited to 'bank-eiffel')
-rw-r--r--bank-eiffel/application.e24
-rw-r--r--bank-eiffel/bank.ecf21
2 files changed, 45 insertions, 0 deletions
diff --git a/bank-eiffel/application.e b/bank-eiffel/application.e
new file mode 100644
index 0000000..c880bf9
--- /dev/null
+++ b/bank-eiffel/application.e
@@ -0,0 +1,24 @@
1note
2 description : "bank application root class"
3 date : "$Date$"
4 revision : "$Revision$"
5
6class
7 APPLICATION
8
9inherit
10 ARGUMENTS
11
12create
13 make
14
15feature {NONE} -- Initialization
16
17 make
18 -- Run application.
19 do
20 --| Add your code here
21 print ("Hello Eiffel World!%N")
22 end
23
24end
diff --git a/bank-eiffel/bank.ecf b/bank-eiffel/bank.ecf
new file mode 100644
index 0000000..8164c31
--- /dev/null
+++ b/bank-eiffel/bank.ecf
@@ -0,0 +1,21 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-5-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-5-0 http://www.eiffel.com/developers/xml/configuration-1-5-0.xsd" name="bank" uuid="ABD750A4-A528-4FEE-A7EA-37791A0D0F37">
3 <target name="bank">
4 <root feature="make" class="APPLICATION"/>
5 <option warning="true">
6 <assertions precondition="true" postcondition="true" check="true" invariant="true" loop="true" supplier_precondition="true"/>
7 </option>
8 <precompile name="base_pre" location="$ISE_PRECOMP/base.ecf"/>
9 <library name="base" location="$ISE_LIBRARY/library/base/base.ecf"/>
10 <cluster name="bank" location=".\" recursive="true">
11 <file_rule>
12 <exclude>/EIFGENs$</exclude>
13 <exclude>/.svn$</exclude>
14 <exclude>/CVS$</exclude>
15 </file_rule>
16 </cluster>
17 </target>
18 <target name="bank_dotnet" extends="bank">
19 <setting name="msil_generation" value="true"/>
20 </target>
21</system>