summaryrefslogtreecommitdiff
path: root/qpid/cc/README
diff options
context:
space:
mode:
authorArnaud Simon <arnaudsimon@apache.org>2008-10-17 12:51:51 +0000
committerArnaud Simon <arnaudsimon@apache.org>2008-10-17 12:51:51 +0000
commitb5306d0b1fad54f7094df8e8ee4c26c2a1a748b8 (patch)
tree8aae6cd0440721b21fd5dbdf670906f7a68b03be /qpid/cc/README
parent825b81a14b54f02ebe415366ac66205b00429ab5 (diff)
downloadqpid-python-b5306d0b1fad54f7094df8e8ee4c26c2a1a748b8.tar.gz
qpid-1371: added .net cc support + cc .net interop support
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@705588 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cc/README')
-rw-r--r--qpid/cc/README30
1 files changed, 28 insertions, 2 deletions
diff --git a/qpid/cc/README b/qpid/cc/README
index b0e3385d6d..8d1286f6d7 100644
--- a/qpid/cc/README
+++ b/qpid/cc/README
@@ -20,15 +20,41 @@ Download CruiseControl from: http://cruisecontrol.sourceforge.net/
Set system variables
******************
-Prior to use CruiseControl you'll need to set two system variables:
+Prior to use CruiseControl you'll need to set three system variables:
Variable Value
CC_HOME path to your qpid project, for example /home/foo/projects/qpid
CPPSTORE_HOME path to your C++ store, for example /home/foo/projects/bdbstore-cpp
+NANT_HOME path to the nant directory -- only required for .net client --
+ (nant can be downloaded from http://nant.sourceforge.net/)
Edit the file CC_HOME/config.properties and set the properties so to match your system requirements.
Notes
- * the cpp store can be checked out from: https://svn.jboss.org/repos/rhmessaging/store/trunk/cpp
+ * the cpp store can be checked out from: https://svn.jboss.org/repos/rhmessaging/store/trunk/cpp
* Only unix scrips are currently provided
+ *
+
+
+******************
+Installing Mono
+******************
+For building the .net client on a Linux platform you need to install Mono.
+Mono website is: http://www.mono-project.com/Main_Page
+Here are the instruction for a RHEL5 platform:
+
+Create the file "/etc/yum.repos.d/mono.repo" and add the following lines:
+
+[Mono]
+name=Mono Stack (RHEL_5)
+type=rpm-md
+baseurl=http://download.opensuse.org/repositories/Mono/RHEL_5/
+gpgcheck=1
+gpgkey=http://download.opensuse.org/repositories/Mono/RHEL_5/repodata/repomd.xml.key
+enabled=1
+
+Enter the following command to install Mono:
+
+# yum install mono-complete
+
******************
Running CruiseControl