Skip to content

Commit

Permalink
Fixed problem in compiling io module.
Browse files Browse the repository at this point in the history
git-svn-id: https://cdk.svn.sourceforge.net/svnroot/cdk/trunk/cdk@794 eb4e18e3-b210-0410-a6ab-dec725e4b171
  • Loading branch information
egonw committed Nov 22, 2002
1 parent 88ef384 commit fbd2c58
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,12 @@
<target name="compile-io" depends="init, dist-core">
<echo message="Compiling classes defined in ${src}/io.classes." />

<javac srcdir="${src}/org/openscience/cdk/io" destdir="${build}"
<javac srcdir="${src}" destdir="${build}"
optimize="off" debug="on" deprecation="off">
<include name="org/openscience/cdk/io/**/*"/>
<include name="org/openscience/cdk/ChemFile.java"/>
<include name="org/openscience/cdk/exception/UnsupportedChemObjectException.java"/>

<classpath refid="project.class.path" />
<classpath>
<fileset dir="${dist}/jar">
Expand Down Expand Up @@ -255,6 +259,8 @@
<include name="org/openscience/cdk/Ring.class" />
<include name="org/openscience/cdk/RingSet.class" />
<include name="org/openscience/cdk/SetOfMolecules.class" />
<!-- Added after CDK-RFC 2 -->
<include name="org/openscience/cdk/Crystal.class" />
</fileset>
</jar>
</target>
Expand Down

0 comments on commit fbd2c58

Please sign in to comment.