Skip to content

Commit

Permalink
Update platform dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed May 1, 2020
1 parent b274090 commit 2d5a0b3
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
7 changes: 5 additions & 2 deletions chapters/setup/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

## Dependencies

- CMake (optional)
- Ninja (optional)
| Program | Description | Source | Comment |
| :-----: | :--------------------------------------------: | :--------------------: | :------: |
| CMake | Build file generator | Native package manager | Optional |
| Ninja | Build system similar to Makefiles, but faster. | Native package manager | Optional |
| Clang | Compiler. | Native package manager | Optional |

## Install

Expand Down
24 changes: 20 additions & 4 deletions chapters/setup/macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

## Dependencies

- XCode (install via AppStore)
- CMake (optional)
- Ninja (optional)
- xcpretty (optional)
| Program | Description | Source | Comment |
| :------: | :--------------------------------------------: | :-------------: | :------: |
| XCode | Compiler & IDE | AppStore | |
| CMake | Build file generator | brew / download | Optional |
| Ninja | Build system similar to Makefiles, but faster. | brew / download | Optional |
| xcpretty | Pretty prints XCode command line output | brew / download | Optional |

```sh
brew install cmake ninja-build
gem install xcpretty
```

## Install

Expand All @@ -14,3 +21,12 @@ git clone https://github/juce-framework/JUCE.git
cd JUCE/extras/Projucer/Builds/MacOS
xcodebuild --project Projucer.xcodeproj --configuration Release | xcpretty
```

## Tools

### xcpretty

```sh
xcodebuild [flags] | xcpretty # Pretty print
xcodebuild [flags] | tee xcodebuild.log | xcpretty # Pretty print, but save raw output to file.
```
6 changes: 4 additions & 2 deletions chapters/setup/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

## Dependencies

- Visual Studio (download from Microsoft)
- CMake (optional)
| Program | Description | Source | Comment |
| :-----------: | :------------------: | :----------------------: | :------: |
| Visual Studio | Compiler & IDE | Download from Microsoft | |
| CMake | Build file generator | Scoop / Choco / Download | Optional |

## Install

Expand Down

0 comments on commit 2d5a0b3

Please sign in to comment.