From 860ebbc8596afde75a7c17030e43774daa39d960 Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 19 May 2015 22:33:12 +0200 Subject: [PATCH] added build instructions --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 093cef7..fa1ad77 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ # c++utilities Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities. + +## Build instructions +Building the library is simple: +``` +INSTALL_ROOT=/where/you/want/to/install qmake-qt5 "$pkgname.pro" -r -spec linux-g++ +make && make install +``` +As you can see, the qmake build system is used. However the library itself does *not* depend on Qt. + +The repository also contains PKGBUILD files for building Arch Linux packages. A PKGBUILD file to build for Windows using the Mingw-w64 compiler is also included.