Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities
Go to file
Martchus 47b96df17b added simple CMake project file 2015-12-05 22:47:49 +01:00
application added simple CMake project file 2015-12-05 22:47:49 +01:00
chrono fixed DateTime::now() 2015-09-22 22:52:43 +02:00
conversion throw ConversionException if not all chars could be extracted 2015-11-28 00:19:44 +01:00
io implemented computeCrc32() 2015-10-20 08:49:38 +02:00
math fixed includes 2015-09-06 20:19:09 +02:00
misc small changes 2015-10-06 22:28:33 +02:00
.gitignore added .directory, docs/ 2015-07-31 01:24:10 +02:00
CMakeLists.txt added simple CMake project file 2015-12-05 22:47:49 +01:00
LICENSE Create LICENSE 2015-04-22 19:01:00 +02:00
README.md added simple CMake project file 2015-12-05 22:47:49 +01:00
c++utilities.doxygen First commit 2015-04-22 18:36:40 +02:00
c++utilities.pro updated version 2015-10-16 21:35:50 +02:00
config.h.in added simple CMake project file 2015-12-05 22:47:49 +01:00
general.pri added simple CMake project file 2015-12-05 22:47:49 +01:00

README.md

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 c++utilities.pro
make && make install

As you can see, the qmake build system is used. However the library itself does not depend on Qt.

It is also possible to build the library using CMake:

cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/where/you/want/to/install project/directory
make && make install

In any case, the make option -j might be used to compile multiple files in parallel.

The repository PKGBUILDs (also on GitHub) contains files for building Arch Linux packages. A PKGBUILD file to build for Windows using the Mingw-w64 compiler is also included.