Skip to content

Commit

Permalink
fixup! doc: Update for CMake-based build system
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Jul 30, 2024
1 parent d41a407 commit fbf2342
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 3 additions & 1 deletion doc/build-freebsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,12 @@ pkg install qt5-buildtools qt5-core qt5-gui qt5-linguisttools qt5-testlib qt5-wi

###### libqrencode

The GUI can encode addresses in a QR Code. To build in QR support for the GUI, install `libqrencode`. Skip if not using the GUI or don't want QR code functionality.
The GUI can encode addresses in a QR code. To build in QR code support for the GUI, install libqrencode:
```bash
pkg install libqrencode
```
Skip this step if not using the GUI or do not want QR code functionality. In the latter case, pass `-DWITH_QRENCODE=OFF`.

---

#### Notifications
Expand Down
4 changes: 3 additions & 1 deletion doc/build-netbsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,13 @@ Bitcoin Core includes a GUI built with the cross-platform Qt Framework. To compi
pkgin install qt5-qtbase qt5-qttools
```

The GUI can encode addresses in a QR Code. To build in QR support for the GUI, install `qrencode`.
The GUI can encode addresses in a QR code. To build in QR code support for the GUI, install libqrencode:

```bash
pkgin install qrencode
```
Skip this step if not using the GUI or do not want QR code functionality. In the latter case, pass `-DWITH_QRENCODE=OFF`.


#### Test Suite Dependencies

Expand Down
9 changes: 5 additions & 4 deletions doc/build-unix.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,12 @@ Additionally, to support Wayland protocol for modern desktop environments:

sudo apt install qtwayland5

libqrencode (optional) can be installed with:
The GUI can encode addresses in a QR code. To build in QR code support for the GUI, install libqrencode:

sudo apt-get install libqrencode-dev

Skip this step if not using the GUI or do not want QR code functionality. In the latter case, pass `-DWITH_QRENCODE=OFF`.


### Fedora

Expand Down Expand Up @@ -140,12 +142,11 @@ Additionally, to support Wayland protocol for modern desktop environments:

sudo dnf install qt5-qtwayland

libqrencode (optional) can be installed with:
The GUI can encode addresses in a QR code. To build in QR code support for the GUI, install libqrencode:

sudo dnf install qrencode-devel

Once these are installed, they will be found by configure and a bitcoin-qt executable will be
built by default.
Skip this step if not using the GUI or do not want QR code functionality. In the latter case, pass `-DWITH_QRENCODE=OFF`.

## Dependencies

Expand Down

0 comments on commit fbf2342

Please sign in to comment.