Update of /cvsroot/nhibernate/nhibernate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv791
Modified Files:
NHibernateSolution.build
Log Message:
Fixed up the build files and doc generation to reduce amount of
copying.
Index: NHibernateSolution.build
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/NHibernateSolution.build,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** NHibernateSolution.build 6 May 2005 08:21:45 -0000 1.31
--- NHibernateSolution.build 7 May 2005 04:27:25 -0000 1.32
***************
*** 260,278 ****
<target name="doc" depends="init" description="Builds the API documentation and the Help Documentation" >
<call target="sdkdoc" />
! <nant target="clean package" buildfile="doc/reference/doc.build" />
<if test="${vshik.installed}">
! <property name="help2.dir" value="${build.dir}/doc/Help2" />
! <mkdir dir="${help2.dir}" failonerror="false" />
! <copy if="${vshik.installed}" todir="${help2.dir}" overwrite="true" >
! <fileset basedir="doc/help2">
! <include name="*" />
! </fileset>
! </copy>
! <mkdir dir="${help2.dir}/Titles" failonerror="false" />
! <move flatten="true" todir="${help2.dir}/Titles">
! <fileset basedir="${build.dir}/doc">
<include name="**/*.HxS" />
</fileset>
</move>
</if>
</target>
--- 260,281 ----
<target name="doc" depends="init" description="Builds the API documentation and the Help Documentation" >
<call target="sdkdoc" />
! <property name="lang" value="en" />
! <nant target="clean build" buildfile="doc/reference/doc.build">
! <properties>
! <property name="lang" value="${lang}" />
! </properties>
! </nant>
<if test="${vshik.installed}">
!
! <!--
! move the generated Help2 (HxS) files from the sdk that
! were built by ndoc into the help2 folder for this build.
! -->
! <move flatten="true" todir="${build.dir}/doc/${lang}/help2/Titles">
! <fileset basedir="${build.dir}/doc/sdk">
<include name="**/*.HxS" />
</fileset>
</move>
+
</if>
</target>
|