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.9 platform.

Package Information

QJson Dependencies

Required

Qt-4.8.7 and CMake-3.4.3

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=/usr \
      -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: $QT4DIR/include/json and $QT4DIR/lib/cmake/qjson

Short Descriptions

libqjson.so

contains QJson API functions.

Last updated on 2016-02-24 19:22:02 -0800