-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d948cab
commit d4071d8
Showing
2 changed files
with
40 additions
and
79 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Intructions for compiling dsda-launcher for MacOS | ||
|
||
|
||
## Qt - https://www.qt.io/download | ||
``` | ||
All commits tested using the qt6.2.0 | ||
You could also install qt using 'brew' | ||
``` | ||
|
||
## Compiling | ||
|
||
1. Clone this repo | ||
``` | ||
git clone https://github.com/Pedro-Beirao/dsda-launcher.git | ||
``` | ||
|
||
2. Create a "build" folder inside src/ | ||
``` | ||
cd dsda-launcher | ||
cd src | ||
mkdir build | ||
cd build | ||
``` | ||
3. Run qmake from the build folder | ||
``` | ||
qmake .. | ||
// qmake .. "CONFIG+=deploy" | ||
// ^ this will compile for both x64 and arm64 archs | ||
``` | ||
4. Run make | ||
``` | ||
make | ||
``` | ||
|
||
## Distributing | ||
|
||
For distribution of the binary, you can use `macdeployqt` which patches the final app bundle with everything the users will need to run in the system. |