From b59347d249b3dd5b59ce450f0d8fabc41679bb87 Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Wed, 10 Jan 2018 17:52:32 +0100 Subject: [PATCH] Added "Building from source" --- Building-from-source.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Building-from-source.md diff --git a/Building-from-source.md b/Building-from-source.md new file mode 100644 index 0000000..fab34fe --- /dev/null +++ b/Building-from-source.md @@ -0,0 +1,12 @@ +If you cannot use docker, you can build the sources in your own environment. Please make sure that you use the latest & greatest tools available (Qt-version, qmake, lrelease, compiler, etc.). + +Currently this is the only way to get certain extra functionality working (Bugs [#59](https://github.com/0xFEEDC0DE64/QtZeiterfassung/issues/59), [#60](https://github.com/0xFEEDC0DE64/QtZeiterfassung/issues/60), [#61](https://github.com/0xFEEDC0DE64/QtZeiterfassung/issues/61)) + +``` +git clone --recursive https://github.com/0xFEEDC0DE64/QtZeiterfassung.git +mkdir build_QtZeiterfassung +cd build_QtZeiterfassung +qmake ../QtZeiterfassung +make +make install # only needed on first build to copy needed resources +``` \ No newline at end of file