summaryrefslogtreecommitdiff
path: root/BUILD_C++.txt
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2005-10-20 13:40:58 +0000
committerHenri Herscher <henri@oreka.org>2005-10-20 13:40:58 +0000
commit7e1d63dd9fd149e4934bf77095c8610fac786b04 (patch)
tree5fe486a1b0300c3b84fb559107a868e5cc2c95da /BUILD_C++.txt
parent467768fc956fc3e5a253373f26c71c681b31b6b8 (diff)
First checkin
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@2 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'BUILD_C++.txt')
-rw-r--r--BUILD_C++.txt58
1 files changed, 58 insertions, 0 deletions
diff --git a/BUILD_C++.txt b/BUILD_C++.txt
new file mode 100644
index 0000000..f3615f4
--- /dev/null
+++ b/BUILD_C++.txt
@@ -0,0 +1,58 @@
+
+This file describes how to build the C++ part of the oreka capture system
+
+=====================================
+Build on Linux
+
+Prerequisites:
+
+install these packages first using your linux distribution packaging system
+or download sources tarballs from the listed websites.
+
+* log4cxx 0.9.7 - It is important to use this precise version for now
+ http://logging.apache.org/log4cxx/
+* ACE 5.4.2
+ http://www.cs.wustl.edu/~schmidt/ACE.html
+* libpcap 0.7.2
+ http://www.tcpdump.org/
+* boost 1.31.0
+ http://www.boost.org
+* xerces-c 2.6
+ http://xml.apache.org/xerces-c/
+* libsndfile 1.0.10
+ http://www.mega-nerd.com/libsndfile/
+
+Build orkbasecxx on the command line:
+
+* Go to the root directory of the orkbasecxx
+* libtoolize --force
+* make -f Makefile.cvs
+* ./configure
+* make
+* make install
+
+Build orkaudio on the command line:
+
+* Go to the root directory of the orkaudio
+* libtoolize --force
+* make -f Makefile.cvs
+* ./configure
+* make
+
+For debug binary: modify above as follows
+* ./configure --enable-debug=full
+* CXXFLAGS="-O0 -g3"
+* make -e
+
+Build using Kdevelop
+
+* Project/import existing project (libtool based c++ project)
+
+=====================================
+Build on Windows/MSVC6 (SP6)
+
+* Download the c++ win32 external library pack and unpack into c:\devExt
+ (if you change this location, you need to change all references in the dsp files)
+* Load orkaudio\OrkAudio.dsw into MSVC
+* Select orkbase as active project, build
+* Select orkaudio as active project, build \ No newline at end of file