Fixes some basic grammatical mistakes (#3053)

This commit is contained in:
Niko
2021-07-31 11:03:07 +00:00
committed by GitHub
parent 986b2937d7
commit bbe7849240
5 changed files with 64 additions and 65 deletions
+9 -9
View File
@@ -4,15 +4,15 @@
#### 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
1. Install Xcode and Xcode Command Line Utilites
2. Start Xcode, settings -> Locations, activate your Command Line Tools
1. Install Xcode and Xcode Command Line Utilities
2. Start Xcode, go into Settings -> Locations, and activate your Command Line Tools
3. Install brew https://brew.sh/
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
7. Go into project directory
8. Create build folder `mkdir build && cd build`
9. `qmake .. && make`
4. Install the dependencies using `brew install boost openssl rapidjson`
5. Install Qt using `brew install qt`
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
8. Create a build folder and go into it (`mkdir build && cd build`)
9. Compile using `qmake .. && make`
_If you want to use cmake instead of qmake, just replace the above qmake command with cmake_
@@ -21,7 +21,7 @@ If the Project does not build at this point, you might need to add additional Pa
`brew info openssl`
`brew info boost`
If brew doesn't link openssl properly then you should be able to link it yourself using those two commands:
If brew doesn't link OpenSSL properly then you should be able to link it yourself by using these two commands:
- `ln -s /usr/local/opt/openssl/lib/* /usr/local/lib`
- `ln -s /usr/local/opt/openssl/include/openssl /usr/local/include/openssl`