master
Raymund Zacharias added encoding attribute to...

Raymund Zacharias authored 7 years ago

1) <?xml version="1.0" encoding="UTF-8"?>
fenris added class 'word'

fenris authored 7 years ago

2) <project name="fs-workbench" default="build">
fenris added small test

fenris authored 7 years ago

3) 	<target name="build" depends="build-base,build-model,build-test">
Raymund Zacharias added encoding attribute to...

Raymund Zacharias authored 7 years ago

4) 		<concat destfile="build/workbench.js"  encoding="UTF-8">
fenris added small test

fenris authored 7 years ago

5) 			<filelist dir=".">
6) 				<file name="build/base.js">
7) 				</file>
8) 				<file name="build/model.js">
9) 				</file>
10) 				<file name="build/test.js">
11) 				</file>
12) 			</filelist>
13) 		</concat>
14) 	</target>
15) 	<target name="build-base">
16) 		<mkdir dir="build">
17) 		</mkdir>
Raymund Zacharias added encoding attribute to...

Raymund Zacharias authored 7 years ago

18) 		<concat destfile="build/base.js"  encoding="UTF-8">
fenris added small test

fenris authored 7 years ago

19) 			<filelist dir=".">
20) 				<file name="source/base.js">
21) 				</file>
22) 			</filelist>
23) 		</concat>
24) 	</target>
25) 	<target name="build-model">
fenris added class 'word'

fenris authored 7 years ago

26) 		<mkdir dir="build">
27) 		</mkdir>
Raymund Zacharias added encoding attribute to...

Raymund Zacharias authored 7 years ago

28) 		<concat destfile="build/model.js"  encoding="UTF-8">
fenris added class 'word'

fenris authored 7 years ago

29) 			<filelist dir=".">
Fenris Wolf foo

Fenris Wolf authored 7 years ago

30) 				<file name="source/model/concept.js">
31) 				</file>
32) 				<file name="source/model/wordfragment.js">
33) 				</file>
fenris added class 'word'

fenris authored 7 years ago

34) 				<file name="source/model/word.js">
35) 				</file>
Fenris Wolf foo

Fenris Wolf authored 7 years ago

36) 				<file name="source/model/translation.js">
37) 				</file>
38) 				<file name="source/model/transition.js">
39) 				</file>
fenris added class 'word'

fenris authored 7 years ago

40) 			</filelist>
41) 		</concat>
42) 	</target>
fenris added small test

fenris authored 7 years ago

43) 	<target name="build-test">
44) 		<mkdir dir="build">
45) 		</mkdir>
Raymund Zacharias added encoding attribute to...

Raymund Zacharias authored 7 years ago

46) 		<concat destfile="build/test.js" encoding="UTF-8">
fenris added small test

fenris authored 7 years ago

47) 			<filelist dir=".">
48) 				<file name="source/test.js">
49) 				</file>
50) 			</filelist>
51) 		</concat>
52) 	</target>