Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added Linux/Unix to README #43

Open
wants to merge 10 commits into
base: community
Choose a base branch
from
Open
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 20 additions & 3 deletions libs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,30 @@ notwendig.)
macOS
^^^^^
Unter MacOS ist die Einrichtung relativ einfach und bedarf nur der oben genannten Voreinstellungen.
Es wird der von Apple ausgelieferte clang compiler verwendet.
Es wird der von Apple ausgelieferte clang compiler verwendet.
transgirllucy marked this conversation as resolved.
Show resolved Hide resolved
Beispiel: Innerhalb von macOS /Users/governikus/AusweisApp2 befindet sich der Quellcode.
::

$ cd /Users/governikus
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=release ../AusweisApp2/libs
$ make

Beispiel: Innerhalb von /Users/governikus/AusweisApp2 befindet sich der Quellcode.

Linux / Unix
^^^^^^^^^^^^
Die Einrichtung unter Linux/Unix ist einfach und erfordert nur die oben genannten Einstellungen. Die meisten Distributionen haben den C Compiler bereits vorinstalliert, aber er kann auch nachträglich installiert werden.
Beispiel: Innerhalb von Linux/Unix /home/governikus/AusweisApp2 befindet sich der Quellcode
transgirllucy marked this conversation as resolved.
Show resolved Hide resolved

Install dependencies :

` sudo apt install libpcsclite1 libpcsclite-dev qttools5-dev libqt5svg5-dev libqt5websockets5-dev libqt5qml5 libqt5qml5-dev qtdeclarative5-dev qtbase5-dev qt-quickcontrols2-5-dev
misery marked this conversation as resolved.
Show resolved Hide resolved
`

::

$ cd /Users/governikus
$ cd /home/governikus

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make that $HOME and it is portable

$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=release ../AusweisApp2/libs
Expand Down