[pgsqlclient-checkins] pgsqlclient_10 PgSqlClient.build,1.8,1.9
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-10-21 16:05:41
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10 In directory sc8-pr-cvs1:/tmp/cvs-serv8448 Modified Files: PgSqlClient.build Log Message: Updated build file Index: PgSqlClient.build =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.build,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** PgSqlClient.build 15 Oct 2003 14:35:05 -0000 1.8 --- PgSqlClient.build 21 Oct 2003 12:17:47 -0000 1.9 *************** *** 71,74 **** --- 71,80 ---- <!-- Build target for all existing platforms --> <target name="build-all" depends="check-build-config"> + <call target="net-1.0" /> + <call target="net-1.1" /> + <call target="mono-1.0" /> + </target> + + <target name="net-1.0"> <!-- .NET Framework 1.0 --> <available type="Framework" resource="net-1.0" property="temp.framework.available" /> *************** *** 79,92 **** <property name="nant.settings.currentframework" value="net-1.0" /> <echo message="Building using .NET Framework 1.0." /> ! <call target="build-provider" /> <if propertyexists="htmlhelp.compiler"> ! <!-- call target="build-sdk" / --> </if> <if propertyexists="nunit.framework.dll"> ! <call target="build-nunit-tests" /> </if> ! <call target="distribution" /> </if> ! <!-- .NET Framework 1.1 --> <available type="Framework" resource="net-1.1" property="temp.framework.available" /> --- 85,100 ---- <property name="nant.settings.currentframework" value="net-1.0" /> <echo message="Building using .NET Framework 1.0." /> ! <call target="build-provider" force="true" /> <if propertyexists="htmlhelp.compiler"> ! <!-- call target="build-sdk" force="true" /--> </if> <if propertyexists="nunit.framework.dll"> ! <call target="build-nunit-tests" force="true" /> </if> ! <call target="distribution" force="true" /> </if> ! </target> ! ! <target name="net-1.1"> <!-- .NET Framework 1.1 --> <available type="Framework" resource="net-1.1" property="temp.framework.available" /> *************** *** 97,110 **** <property name="nant.settings.currentframework" value="net-1.1" /> <echo message="Building using .NET Framework 1.1." /> ! <call target="build-provider" /> <if propertyexists="htmlhelp.compiler"> ! <!-- call target="build-sdk" / --> </if> <if propertyexists="nunit.framework.dll"> ! <call target="build-nunit-tests" /> </if> ! <call target="distribution" /> </if> ! <!-- Mono 1.0 --> <available type="Framework" resource="mono-1.0" property="temp.framework.available" /> --- 105,120 ---- <property name="nant.settings.currentframework" value="net-1.1" /> <echo message="Building using .NET Framework 1.1." /> ! <call target="build-provider" force="true" /> <if propertyexists="htmlhelp.compiler"> ! <!-- call target="build-sdk" force="true" /--> </if> <if propertyexists="nunit.framework.dll"> ! <call target="build-nunit-tests" force="true" /> </if> ! <call target="distribution" force="true" /> </if> ! </target> ! ! <target name="mono-1.0"> <!-- Mono 1.0 --> <available type="Framework" resource="mono-1.0" property="temp.framework.available" /> *************** *** 115,122 **** <property name="nant.settings.currentframework" value="mono-1.0" /> <echo message="Building using Mono 1.0." /> ! <call target="build-provider-mono" /> </if> </target> ! <!-- Taget for build TLS Assembly (Microsoft .NET) --> <target name="build-tls"> --- 125,134 ---- <property name="nant.settings.currentframework" value="mono-1.0" /> <echo message="Building using Mono 1.0." /> ! <property name="build.define" value="_MONO"/> ! <call target="build-provider-mono" force="true" /> </if> </target> ! ! <!-- Taget for build TLS Assembly (Microsoft .NET) --> <target name="build-tls"> |