forked from spring-projects/spring-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CopyLibToBinHelpers.include
70 lines (60 loc) · 1.82 KB
/
CopyLibToBinHelpers.include
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
69
70
<project name="CopyLibToBinHelpers">
<target name="copycommonlogginglibtobin">
<echo message="${common.logging.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${common.logging.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
<echo message="${common.logging.core.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${common.logging.core.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
</target>
<target name="copynh3libtobin">
<echo message="${nh3.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${nh3.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
<echo message="${iesi3.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${iesi3.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
</target>
<target name="copynh4libtobin">
<echo message="${nh4.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${nh4.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
<echo message="${iesi4.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${iesi4.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
</target>
<target name="copyquartz2libtobin">
<echo message="${quartz2.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${quartz2.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
</target>
<target name="copynvelocitylibtobin">
<echo message="${nvelocity.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${nvelocity.lib.dir}">
<include name="**/NVelocity.dll" />
</fileset>
</copy>
</target>
</project>