mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Update macOS build instructions (Qt Creator, Qt version, ccache) (#3408)
* update build instructions * add link to ccache
This commit is contained in:
parent
1682f0fb36
commit
5938e00508
|
@ -1,6 +1,6 @@
|
||||||
# Building on macOS
|
# Building on macOS
|
||||||
|
|
||||||
#### 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**)
|
#### Note - If you want to develop Chatterino 2 you might also want to install Qt Creator (make sure to install **Qt 5.12 or newer**), it is not required though and any C++ IDE (might require additional setup for cmake to find Qt libraries) or a normal text editor + running qmake/cmake from terminal should work as well
|
||||||
|
|
||||||
#### 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
|
#### 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
|
||||||
|
|
||||||
|
@ -8,11 +8,12 @@
|
||||||
2. Start Xcode, go into Settings -> Locations, and activate your Command Line Tools
|
2. Start Xcode, go into Settings -> Locations, and activate your Command Line Tools
|
||||||
3. Install brew https://brew.sh/
|
3. Install brew https://brew.sh/
|
||||||
4. Install the dependencies using `brew install boost openssl rapidjson`
|
4. Install the dependencies using `brew install boost openssl rapidjson`
|
||||||
5. Install Qt using `brew install qt`
|
5. Install Qt5 using `brew install qt@5`
|
||||||
6. Step 5 should output some directions to add Qt to your path, you will need to do this for qmake
|
6. Step 5 should output some directions to add Qt to your path, you will need to do this for qmake
|
||||||
7. Go into the project directory
|
7. (_OPTIONAL_) Install [ccache](https://ccache.dev) (used to speed up compilation by using cached results from previous builds) using `brew install ccache`
|
||||||
8. Create a build folder and go into it (`mkdir build && cd build`)
|
8. Go into the project directory
|
||||||
9. Compile using `qmake .. && make`
|
9. Create a build folder and go into it (`mkdir build && cd build`)
|
||||||
|
10. Compile using `qmake .. && make`
|
||||||
|
|
||||||
_If you want to use cmake instead of qmake, just replace the above qmake command with cmake_
|
_If you want to use cmake instead of qmake, just replace the above qmake command with cmake_
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue