Fixed DbZeiterfassung dependencies

This commit is contained in:
Daniel Brunner
2018-09-17 20:51:32 +02:00
parent da9df30caf
commit 14a94c6891
3 changed files with 12 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ OTHER_FILES += app.pri \
project.pri
DbTernaryClock.depends += libs
DbZeiterfassung.depends += DbSketch libs
DbZeiterfassung.depends += 3rdparty DbSketch libs
include(installs.pri)
win32: include(installs_win32.pri)

View File

@@ -1,2 +1,12 @@
# DbSoftware
Collection of various self-written tools & libraries
# Building everything from source
```Shell
git clone --recursive https://github.com/0xFEEDC0DE64/DbSoftware.git
mkdir build_DbSoftware
cd build_DbSoftware
qmake CONFIG+=ccache ../DbSoftware
make -j$(nproc)
make install
```