Project

General

Profile

Building on Ubuntu using Cmake » History » Revision 14

Revision 13 (Nehal J Wani, 26 Aug 2014 13:49) → Revision 14/16 (Nehal J Wani, 26 Aug 2014 13:49)

h1. Building exiv2 on Ubuntu using Cmake

* This has been tested on Ubuntu14.04 64 and 32 bit minimal installations.
* Last revision on which this method was tested: r3288
* This wiki page assumes that installation prefix is _/usr/local_ and your build-dir is _~/gnu/exiv2_

# Install some of the basic utilities
<pre>
sudo apt-get update
sudo apt-get install -y subversion make cmake autoconf pkg-config g++ exifprobe clang #clang is required only if you wish to use it as the compiler instead of gcc
</pre>
# Install all the dependencies for building exiv2. Since exiv2 is already available in the Ubuntu repositories, this method makes life easier.
<pre>
sudo apt-get build-dep -y exiv2
</pre>
In case you get the error ...
<pre>
E: You must put some 'source' URIs in your sources.list",
</pre>
.. then after following the steps in this "link":http://askubuntu.com/a/496554/95343 , link:"http://askubuntu.com/a/496554/95343", do:
<pre>
sudo apt-get update
</pre>
# Fetch the source code:
<pre>
mkdir -p ~/gnu/exiv2
cd ~/gnu/exiv2
svn checkout svn://dev.exiv2.org/svn/trunk
cd trunk
</pre>
# Build exiv2
<pre>
mkdir build
cd build
cmake .. # if you are using clang, then do: CC=clang CXX=clang++ cmake ..
make # -DCMAKE_BUILD_TYPE=Debug for debugging
sudo make install
</pre>
# Building tests.
** To execute tests:
<pre>
cd ~/gnu/exiv2/trunk/build
make tests
</pre>
** Running other "test suites":http://dev.exiv2.org/projects/exiv2/wiki/How_do_I_run_the_test_suite_for_Exiv2