Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1018 Bytes

macos.md

File metadata and controls

32 lines (24 loc) · 1018 Bytes

macOS

Dependencies

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
brew install cmake ninja-build
gem install xcpretty

Install

git clone https://github/juce-framework/JUCE.git
cd JUCE/extras/Projucer/Builds/MacOS
xcodebuild --project Projucer.xcodeproj --configuration Release | xcpretty

Tools

xcpretty

xcodebuild [flags] | xcpretty                       # Pretty print
xcodebuild [flags] | tee xcodebuild.log | xcpretty  # Pretty print, but save raw output to file.