Browse Source

Fixed build script, for #3298

svn changeset:9391/svn branch:6.2
tags/6.7.0.beta1
Artur Signell 14 years ago
parent
commit
afa1dcb973
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      build/build.xml

+ 3
- 3
build/build.xml View File

@@ -912,7 +912,7 @@
<pathelement location="${gwt-dir}/${platform}/gwt-user.jar" />
<pathelement location="${gwt-dir}/${platform}/${lib-gwt-dev}" />
<pathelement location="${result-path}/classes" />
<pathelement location="${result-path}/src" />
<pathelement location="${result-path}/src/core" />
</classpath>
</javac>
</target>
@@ -1107,7 +1107,7 @@
<include name="**/*" />
</fileset>
<!-- add sources -->
<fileset dir="${result-path}/src">
<fileset dir="${result-path}/src/core">
<patternset>
<exclude name="${toolkit-package}/demo/**" />
<exclude name="${toolkit-package}/tests/**"/>
@@ -1142,7 +1142,7 @@

<echo>Adding source for demos</echo>
<copy todir="${output-dir}/WebContent/WEB-INF/src">
<fileset dir="${result-path}/src">
<fileset dir="${result-path}/src/demo">
<include name="${toolkit-package}/demo/**/*" />
<!-- user might want to tweak launcher classes -->
<include name="${toolkit-package}/launcher/**" />

Loading…
Cancel
Save