QJson-0.8.1

Introduction to QJson

QJson is a Qt-based library that maps JSON data to QVariant objects and vice versa.

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

Package Information

QJson Dependencies

Required

Qt-4.8.5 and CMake-2.8.12.2

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/qjson

Installation of QJson

Install QJson by running the following commands:

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

This package does not contain a test suite.

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.

Contents

Installed Programs: none
Installed Library: libqjson.so
Installed Directory: $QTDIR/include/json and $QTDIR/lib/cmake/qjson

Short Descriptions

libqjson.so

contains QJson API functions.

Last updated on 2014-02-27 09:10:28 -0800