diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-16 08:08:09 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-16 08:08:09 +0000 |
commit | abea253e89cc96d0c08b33f2c866cb6f9419b4db (patch) | |
tree | 9eebb59cd5a5d30307727429a243b0f198d230da /sdo-cpp/trunk/BUILDING | |
parent | ebcac3fe1bb31f053b82a391cfd1cf1730c4e479 (diff) |
Add the javascript client to the base jar
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@880654 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sdo-cpp/trunk/BUILDING')
-rw-r--r-- | sdo-cpp/trunk/BUILDING | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/sdo-cpp/trunk/BUILDING b/sdo-cpp/trunk/BUILDING new file mode 100644 index 0000000000..bfb87e7028 --- /dev/null +++ b/sdo-cpp/trunk/BUILDING @@ -0,0 +1,73 @@ +Tuscany C++ Build Instructions for Developers +============================================= + +Download the source from http://svn.apache.org/repos/asf/incubator/tuscany/cpp +The download location is <tuscany_cpp_root> + +Linux Build +=========== + +Prereqs: +- libxml2 (version 2.6.20 or whichever version is prereq'd by axis2c) +- Axis2C (version 0.94) + +Environment: +- export LIBXML2_INCLUDE=<path to libxml2 headers. e.g. /usr/include/libxml2> +- export LIBXML2_LIB=<path to libxml2 libraries. e.g. /usr/lib> +- export AXIS2C_HOME=<axis2c_deploy> + + +Build: +- cd <tuscany_cpp_root>/sdo +- ./build.sh + +This builds the SDO subproject then SCA. The results are installed in + <tuscany_cpp_root>/sdo/deploy + +SDO Test +-------- + +Run: +- cd <tuscany_cpp_root>/sdo +- ./sdotest.sh + + +Linux distribution build +======================== +To build the distro zips for linux: + +1. Download the source from http://svn.apache.org/repos/asf/incubator/tuscany/cpp +The download location is <tuscany_cpp_root> + +2. cd <tuscany_cpp_root>/sdo + +3. set the environment + - export LIBXML2_INCLUDE=<path to libxml2 headers. e.g. /usr/include/libxml2> + - export LIBXML2_LIB=<path to libxml2 libraries. e.g. /usr/lib> + - export AXIS2C_HOME=<axis2c_deploy> + +4. ./builddist.sh + This produces a src and bin zip for Tuscany SDO + +Windows Build +============= + +Microsoft Visual Studio Express projects are provided for building on Windows. + +SDO +--- + +Prereqs: + +- libxml2 (tested with version 2.6.19) +- Axis2C (version 0.94) + +1. Set the following environment variables to point to the location of the dependencies: + LIBXML2_INCLUDE=<libxml2 include location> + LIBXML2_LIB=<libxml2 lib location> + AXIS2C_HOME=<axis2c_deploy> + +2. cd <tuscany_cpp_root>\sdo + +3. .\build.bat + |