cpp-utilities/README.md

21 lines
825 B
Markdown
Raw Normal View History

2015-04-22 18:24:43 +02:00
# c++utilities
Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities.
2015-05-19 22:33:12 +02:00
## Build instructions
Building the library is simple:
```
2015-12-05 22:47:49 +01:00
INSTALL_ROOT=/where/you/want/to/install qmake-qt5 c++utilities.pro
2015-05-19 22:33:12 +02:00
make && make install
```
As you can see, the qmake build system is used. However the library itself does *not* depend on Qt.
2015-12-05 22:47:49 +01:00
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.
2015-06-26 02:30:22 +02:00
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.