blob: 09d1cd221b5d1204a6dd0ec7a88be410a474c5e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Title: How to build telepathy-qt4 with alternate prefix
Date: 2011-08-11
Tags: technical
Slug: how-to-build-telepathy-qt4-with
Just figured out how to build telepathy-qt4 in an alternate prefix and
also look for dependencies in that prefix as well. Since I don't use
cmake much these days, figured I'd post this so I could go and look back
at it later. Depends on [this fix][].
:::sh
PKG_CONFIG_PATH=~/the/prefix cmake -DCMAKE_INSTALL_PREFIX=~/the/prefix .make install
Or if on a 64-bit system:
:::sh
PKG_CONFIG_PATH=~/the/prefix cmake -DCMAKE_INSTALL_PREFIX=/data/build/telepathy -DLIB_SUFFIX=64 .make install
[this fix]: https://bugs.freedesktop.org/show_bug.cgi?id=40008
|