2022-07-15 15:37:19 +00:00
|
|
|
|
2023-06-28 03:05:30 +00:00
|
|
|
# Building Bambu Studio on MacOS
|
2022-07-22 09:46:10 +00:00
|
|
|
|
|
|
|
## Enviroment setup
|
2023-06-28 03:05:30 +00:00
|
|
|
|
|
|
|
Install Following tools:
|
|
|
|
|
|
|
|
- Xcode from app store
|
|
|
|
- Cmake
|
|
|
|
- git
|
|
|
|
- gettext
|
2022-07-22 09:46:10 +00:00
|
|
|
|
|
|
|
Cmake, git, gettext can be installed from brew(brew install cmake git gettext)
|
|
|
|
|
2023-06-28 03:05:30 +00:00
|
|
|
## Building the dependencies
|
|
|
|
|
|
|
|
You need to build the dependencies of BambuStudio first. (Only needs for the first time)
|
|
|
|
|
|
|
|
Suppose you download the codes into `/Users/_username_/work/projects/BambuStudio`.
|
|
|
|
|
|
|
|
Create a directory to store the built dependencies: `/Users/_username_/work/projects/BambuStudio_dep`.
|
|
|
|
**(Please make sure to replace the username with the one on your computer)**
|
|
|
|
|
|
|
|
Then:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cd BambuStudio/deps
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
```
|
|
|
|
|
2023-06-28 03:05:13 +00:00
|
|
|
Next, for arm64 architecture:
|
|
|
|
```shell
|
|
|
|
cmake ../ -DDESTDIR="/Users/username/work/projects/BambuStudio_dep" -DOPENSSL_ARCH="darwin64-arm64-cc"
|
|
|
|
make
|
|
|
|
```
|
2022-07-22 09:46:10 +00:00
|
|
|
|
2023-06-28 03:05:30 +00:00
|
|
|
Or, for x86 architeccture:
|
|
|
|
```shell
|
|
|
|
cmake ../ -DDESTDIR="/Users/username/work/projects/BambuStudio_dep" -DOPENSSL_ARCH="darwin64-x86_64-cc"
|
|
|
|
make -jN
|
|
|
|
```
|
|
|
|
(N can be a number between 1 and the max cpu number)
|
|
|
|
|
|
|
|
## Building Bambu Studio
|
2022-07-22 09:46:10 +00:00
|
|
|
|
2023-06-28 03:05:30 +00:00
|
|
|
Create a directory to store the installed files at `/Users/username/work/projects/BambuStudio/install_dir`:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cd BambuStudio
|
|
|
|
mkdir install_dir
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
```
|
2022-07-22 09:46:10 +00:00
|
|
|
|
2023-06-28 03:05:30 +00:00
|
|
|
To build using CMake:
|
2022-07-22 09:46:10 +00:00
|
|
|
|
2023-06-28 03:05:30 +00:00
|
|
|
```shell
|
|
|
|
cmake .. -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="/Users/username/work/projects/BambuStudio_dep/usr/local" -DCMAKE_INSTALL_PREFIX="../install_dir" -DCMAKE_BUILD_TYPE=Release -DCMAKE_MACOSX_RPATH=ON -DCMAKE_INSTALL_RPATH="/Users/username/work/projects/BambuStudio_dep/usr/local" -DCMAKE_MACOSX_BUNDLE=on
|
|
|
|
cmake --build . --target install --config Release -jN
|
|
|
|
```
|
2022-07-22 09:46:10 +00:00
|
|
|
|
2023-06-28 03:05:30 +00:00
|
|
|
To build for use with XCode:
|
2022-07-22 09:46:10 +00:00
|
|
|
|
2023-06-28 03:05:30 +00:00
|
|
|
```shell
|
|
|
|
cmake .. -GXcode -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="/Users/username/work/projects/BambuStudio_dep/usr/local" -DCMAKE_INSTALL_PREFIX="../install_dir" -DCMAKE_BUILD_TYPE=Release -DCMAKE_MACOSX_RPATH=ON -DCMAKE_INSTALL_RPATH="/Users/username/work/projects/BambuStudio_dep/usr/local" -DCMAKE_MACOSX_BUNDLE=on
|
|
|
|
```
|