-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dexc-desktop: add build doc for darwin (#2476)
Signed-off-by: Philemon Ukane <[email protected]>
- Loading branch information
1 parent
93ae8f5
commit 61bf8c8
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
# Build Instructions for dexc-desktop | ||
|
||
The dexc-desktop client is a cross-platform desktop application for the DEX client and wallet. The instructions below are for building the client from source. If you are looking for pre-built binaries, see the [releases page](https://github.com/decred/dcrdex/releases). | ||
|
||
**Note**: The instructions below are to be run in your CLI from the `dexc-desktop` directory. | ||
|
||
## Debian | ||
Build with `./debian-package.sh`. The deb archive is located in **./build**. | ||
Build with `./pkg/pkg-debian.sh`. The deb archive is located in **./build**. | ||
|
||
For development, you'll need to install the WebKit Development Libraries. | ||
`apt install libgtk-3-dev libwebkit2gtk-4.0-dev` | ||
For production, they are specified as DEPENDS in the control file and the | ||
package manager will install them. | ||
|
||
## MacOS (darwin) | ||
Build with `./pkg/pkg-darwin.sh` for `amd64` MacOS machines. If running on an | ||
`arm64` machine, you'll need to build with `TARGETS=darwin/arm64 ./pkg/pkg-darwin.sh` instead. | ||
The `.dmg` click installer can be located in **./pkg/installers** after a successful build. |