From b03cc56bec53f8585f548a9c75d28a70f46fbe42 Mon Sep 17 00:00:00 2001 From: 0xFEEDC0DE64 <0xFEEDC0DE64@gmail.com> Date: Thu, 20 Sep 2018 18:59:22 +0200 Subject: [PATCH] Build instructions only check out required packages anymore --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 00ada55..fd93cbb 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,14 @@ DbZeiterfassung git module for use in DbSoftware (https://github.com/0xFEEDC0DE6 # Building from source ```Shell -git clone --recursive https://github.com/0xFEEDC0DE64/DbSoftware.git +git clone https://github.com/0xFEEDC0DE64/DbSoftware.git +cd DbSoftware +git submodule update --init --recursive 3rdparty/Quazip DbSketch DbZeiterfassung libs/DbCoreLib libs/DbGuiLib libs/DbNetworkLib +cd .. mkdir build_DbSoftware cd build_DbSoftware qmake CONFIG+=ccache ../DbSoftware -make -j$(nproc) sub-DbZeiterfassung sub-DbZeiterfassung-install_subtargets +make -j$(nproc) sub-DbZeiterfassung +make sub-DbZeiterfassung-install_subtargets ./bin/zeiterfassung -``` \ No newline at end of file +```