You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by bj...@apache.org on 2007/09/20 01:59:32 UTC

svn commit: r577478 - in /incubator/tuscany/cpp/sdo: README_ANT_INSTALL runtime/core/sdo_axiom_test/build.xml

Author: bjohnson
Date: Wed Sep 19 16:59:32 2007
New Revision: 577478

URL: http://svn.apache.org/viewvc?rev=577478&view=rev
Log:
Adding ant build.xml scripts for sdo_axiom tests

Added:
    incubator/tuscany/cpp/sdo/runtime/core/sdo_axiom_test/build.xml
Modified:
    incubator/tuscany/cpp/sdo/README_ANT_INSTALL

Modified: incubator/tuscany/cpp/sdo/README_ANT_INSTALL
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sdo/README_ANT_INSTALL?rev=577478&r1=577477&r2=577478&view=diff
==============================================================================
--- incubator/tuscany/cpp/sdo/README_ANT_INSTALL (original)
+++ incubator/tuscany/cpp/sdo/README_ANT_INSTALL Wed Sep 19 16:59:32 2007
@@ -3,9 +3,11 @@
 This guide shows how to build TuscanySDO Native with apache ant. 
 Traditionally TuscanySDO was compiled with automake, but we decided
 it would be easier to maintain and more flexible if we switched to 
-ant. The ant build process is still in its beta and will be formalized
-for Release M4. Currently the only item remaining is to write an ant 
-build file for the samples.
+ant. Above all, using ant will standardize the build system across 
+all platforms, obviating the need to support both automake and 
+microsoft VC projects. The ant build process is still in its beta 
+and will be formalized for Release M4. Currently the only item 
+remaining is to write an ant build file for the samples.
 
 
 Required Software to build TuscanySDO Native with ant

Added: incubator/tuscany/cpp/sdo/runtime/core/sdo_axiom_test/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sdo/runtime/core/sdo_axiom_test/build.xml?rev=577478&view=auto
==============================================================================
--- incubator/tuscany/cpp/sdo/runtime/core/sdo_axiom_test/build.xml (added)
+++ incubator/tuscany/cpp/sdo/runtime/core/sdo_axiom_test/build.xml Wed Sep 19 16:59:32 2007
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+   
+     http://www.apache.org/licenses/LICENSE-2.0
+     
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.
+-->
+<project name="TuscanySdoNative_axiom_test" default="all" basedir="../../..">
+
+  <import file="${basedir}/antscripts/system.xml"/>
+  <import file="${basedir}/antscripts/compile-targets.xml"/>
+
+  <!--
+    Notice that the basedir for this project is set to the TuscanySDO root dir
+    This makes path setting in system.xml much simpler, but we'll just have to
+    set a property here to this directory.
+  -->
+  <property name="this.dir"                  location="${basedir}/runtime/core/sdo_axiom_test"/>
+  <property name="sdo_axiom.test.src.dir"    location="${this.dir}"/>
+  <property name="sdo_axiom.test.build.dir"  location="${this.dir}/build"/>
+  <property name="sdo_axiom.test.app"        value="sdo_axiom_test"/>
+
+  <!--
+    Public targets
+  -->
+  <target name="all" description="compile, link, and run TuscanySdoNative sdo_axiom test suite">
+    <antcall target="build"/>
+    <antcall target="run"/>
+  </target>
+
+  <target name="build" 
+          depends="check.ws"
+          if="enable_ws"
+          description="compile and link TuscanySdoNative sdo_axiom test suite">
+    <cpp-build
+        srcdir="${sdo_axiom.test.src.dir}"
+        infiles="*.cpp"
+        outdir="${sdo_axiom.test.build.dir}"
+        outfile="${sdo_axiom.test.app}"
+        outtype="executable">
+      <custom-build-elements>
+        <defineset if="windows" define="_MBCS"/>
+        <includepath path="${axis2c.home.dir}/include"/>
+        <includepath path="${sdo.impl.include.path}"/>
+        <includepath path="${tuscanySDO.install.dir}/include"/>
+        <libset dir="${sdo.impl.library.path}" libs="${sdo.impl.library.name}"/>
+        <libset dir="${tuscanySDO.install.dir}/lib" libs="tuscany_sdo_axiom"/>
+        <libset dir="${axis2c.home.dir}/lib" libs="axis2_util"/>
+      </custom-build-elements>
+    </cpp-build>
+
+    <cpp-install-file
+        srcfile="${sdo_axiom.test.app}${exe.ext}"
+        srcdir="${sdo_axiom.test.build.dir}"
+        destdir="${this.dir}"/>
+  </target>
+
+  <target name="run" depends="build" description="Run TuscanySdoNative sdo_axiom test suite">
+    <exec executable="${this.dir}/${sdo_axiom.test.app}${exe.ext}"/>
+  </target>
+
+  <target name="clean" description="Clean TuscanySdoNative sdo_axiom test suite">
+    <delete dir="${sdo_axiom.test.build.dir}" quiet="@{quiet}"/>
+  </target>
+
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org