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 9 commits into
base: community
Choose a base branch
from
Open
Changes from 2 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
17 changes: 14 additions & 3 deletions libs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,24 @@ 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.
mrtuxa 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
^^^^^
mrtuxa marked this conversation as resolved.
Show resolved Hide resolved
Die Einrichtung unter Linux/Unix ist einfach und erfordert nur die oben genannten Einstellungen. Die meisten Distributionen haben den clang Compiler bereits vorinstalliert, aber er kann auch nachträglich installiert werden.
mrtuxa marked this conversation as resolved.
Show resolved Hide resolved
Beispiel: Innerhalb von Linux/Unix /home/governikus/AusweisApp2. befindet sich der Quellcode
::

$ 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