libdbusmenu-qt-0.9.2

Introduction to libdbusmenu-qt

This library provides a Qt implementation of the DBusMenu specs, which goal is to expose menus on DBus.

This package is known to build and work properly using an LFS-7.4 platform.

Package Information

libdbusmenu-qt Dependencies

Required

Qt-4.8.5

Optional

QJson-0.8.1 (for building the test suite) and Doxygen-1.8.5 (for building the API documentation)

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libdbusmenu-qt

Installation of libdbusmenu-qt

Install libdbusmenu-qt by running the following commands:

mkdir build &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=$QTDIR \
      -DCMAKE_BUILD_TYPE=Release \
      -DWITH_DOC=OFF .. &&
make

To test the results (QJson must be installed), issue: make check.

Now, as the root user:

make install

Command Explanations

-DCMAKE_BUILD_TYPE=Release: This switch is used to build without debugging symbols and apply a higher level of compiler optimizations.

-DWITH_DOC=OFF: This option is set to avoid building the API documentation. Omit it if you have doxygen installed and want the documentation.

Contents

Installed Programs: None
Installed Library: libdbusmenu-qt.so
Installed Directory: $QTDIR/include/dbusmenu-qt

Last updated on 2013-08-24 11:18:35 -0700