From 99d83fce428f30f0d1e7ab8dae7dbe378eb11745 Mon Sep 17 00:00:00 2001 From: Ivano Ras Date: Fri, 27 Jun 2014 15:11:27 +0200 Subject: [PATCH] Update README.md --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index 151f1a1000..22ccbae29e 100644 --- a/README.md +++ b/README.md @@ -106,3 +106,33 @@ If all worked out correctly you can now use IfcOpenShell. For example: $ unzip Munkerud_hus6_BE.zip $ ./IfcObj Munkerud_hus6_BE.ifc $ less Munkerud_hus6_BE.obj + + +Ubuntu Notes +============ + +The following sequence of commands has been tested successfully on Ubuntu 14.04. + +OCE installation. This step worked OK with cmake 2.8.12.2, gcc 4.8.2, g++ 4.8.2. Also, it might take up to an hour to complete. + + apt-get install git cmake gcc g++ libftgl-dev libtbb2 libtbb-dev libboost-all-dev + cd / + mkdir git && cd git + git clone https://github.com/tpaviot/oce.git + mkdir oceBuild && cd oceBuild + cmake ../oce + make -j4 + sudo make install + +IfcOpenShell installation. This step worked OK with cmake 2.8.12.2, gcc 4.8.2, g++ 4.8.2. + + apt-get install swig + cd /git/ + git clone https://github.com/aothms/IfcOpenShell.git + cd IfcOpenShell/cmake + mkdir build && cd build + cmake ../ + make -j4 + +Once done, IfcConvert is to be found in the build folder. +