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.6 systemd platform.

Package Information

QJson Dependencies

Required

Qt-4.8.6 and CMake-3.0.1

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

Short Descriptions

libqjson.so

contains QJson API functions.

Last updated on 2014-08-24 06:24:04 -0700