Compare commits
2 Commits
e98980d06d
...
6bbe69f2b0
| Author | SHA1 | Date |
|---|---|---|
|
|
6bbe69f2b0 | |
|
|
5469a8f253 |
13
building.md
13
building.md
|
|
@ -8,6 +8,10 @@ Install dependencies for the interface:
|
||||||
|
|
||||||
$ sudo apt install build-essential qtcreator qt5-default
|
$ sudo apt install build-essential qtcreator qt5-default
|
||||||
|
|
||||||
|
On ubuntu 22.04 it's:
|
||||||
|
|
||||||
|
$ apt install build-essential qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools
|
||||||
|
|
||||||
Build & run it:
|
Build & run it:
|
||||||
|
|
||||||
$ mkdir build
|
$ mkdir build
|
||||||
|
|
@ -57,3 +61,12 @@ Then edit Info.plist to add samplebrain.icns to CFBundleIconFile. Key `CFBundleI
|
||||||
You might also need to resign the app bundle after making any changes
|
You might also need to resign the app bundle after making any changes
|
||||||
|
|
||||||
$ codesign --force --deep --sign - samplebrain.app
|
$ codesign --force --deep --sign - samplebrain.app
|
||||||
|
|
||||||
|
# Windows (Work in progress)
|
||||||
|
|
||||||
|
* Install [MSYS2](https://www.msys2.org/)
|
||||||
|
* Install dependances via pacman
|
||||||
|
* Build with qmake as usual
|
||||||
|
* Run `windeployqt` and copy missing .dll files into release directory
|
||||||
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue