1.1 KiB
QRedis
QRedis provides a modern Qt client library for communicating with a Redis server. The code uses many new constructs introduced in C++11 and compiles exclusively with Qt 5, ensuring years of compatibility down the road.
Building QRedis
QRedis uses CMake for building the client library, which simplifies the necessary steps across all supported platforms. Assuming you have Qt 5 installed in a location that CMake can find, the client library can be built with the following steps:
-
Open a terminal and navigate to the directory containing the QRedis source code.
-
Create a new directory that will contain the object and binary files produced by the build system and change to that directory:
mkdir build cd build -
Run CMake, which will produce the appropriate Makefile for your platform:
cmake .. -
On Unix-based build systems (including MSYS and Cygwin), run:
makeFor Microsoft Visual C++, run:
nmake
Usage
[TODO]