2018-06-04 17:48:44 +02:00
# Building on macOS
2021-02-21 14:45:42 +01:00
2020-11-21 11:24:32 +01:00
#### Note - If you want to develop Chatterino 2 you will also need to install Qt Creator (make sure to install **Qt 5.12 or newer**)
2021-02-21 14:45:42 +01:00
2021-01-23 16:27:05 +01:00
#### Note - Chatterino 2 is only tested on macOS 10.14 and above - anything below that is considered unsupported. It may or may not work on earlier versions
2021-02-21 14:45:42 +01:00
2018-06-04 17:48:44 +02:00
1. Install Xcode and Xcode Command Line Utilites
2. Start Xcode, settings -> Locations, activate your Command Line Tools
3. Install brew https://brew.sh/
2018-08-01 21:26:11 +02:00
4. `brew install boost openssl rapidjson`
5. `brew install qt`
6. Step 5 should output some directions to add qt to your path, you will need to do this for qmake
2021-02-21 14:45:42 +01:00
7. Go into project directory
8. Create build folder `mkdir build && cd build`
9. `qmake .. && make`
2018-05-25 17:08:09 +02:00
2021-03-07 13:24:48 +01:00
_If you want to use cmake instead of qmake, just replace the above qmake command with cmake_
2018-05-25 17:08:09 +02:00
If the Project does not build at this point, you might need to add additional Paths/Libs, because brew does not install openssl and boost in the common path. You can get their path using
`brew info openssl`
`brew info boost`
2018-06-13 03:58:52 +02:00
If brew doesn't link openssl properly then you should be able to link it yourself using those two commands:
2021-02-21 14:45:42 +01:00
2018-06-13 03:58:52 +02:00
- `ln -s /usr/local/opt/openssl/lib/* /usr/local/lib`
- `ln -s /usr/local/opt/openssl/include/openssl /usr/local/include/openssl`
2018-05-25 17:08:09 +02:00
The lines which you need to add to your project file should look similar to this
```
INCLUDEPATH += /usr/local/opt/openssl/include
LIBS += -L/usr/local/opt/openssl/lib
```