4.3 KiB
OSCAR Build Instructions for Mac
Prerequisites
- Qt 5.12.8 (the current LTS release as of OSCAR 1.1.0)
- macOS 10.12 Sierra or higher for building (required by Qt 5.12)
- Command-Line Tools for Xcode 9.2, and optionally Xcode itself
- Xcode 9.2 is the last version that runs on macOS 10.12
- Xcode 10.1 is the last version that runs on macOS 10.13
- Xcode 10.3 is the latest version that runs on macOS 10.14
NOTE: Official builds are currently made with macOS 10.14 Mojave and Command-Line Tools for Xcode 10.3.
Setup
-
Install Mac OS X 10.12.6 Sierra (or later) and apply all updates.
- Optionally create a "build" user.
-
(Optional) Install Xcode 9.2 (or later, if using a newer version of macOS), approx. 7GB:
- Open Xcode_9.2.xip to expand it with Archive Utility. This will take a while.
- Delete the .xip archive.
- Move Xcode.app into /Applications.
- Launch Xcode.app and agree to the license.
- Uncheck "Show this window..." and close the window.
- Xcode > Quit
-
Install the command-line developer tools, approx. 0.6GB:
-
Launch Terminal.app and run:
xcode-select --install
-
Click "Install".
-
Click "Agree".
This will download and install the latest version of the Command-Line Tools for Xcode for your version of macOS, without requiring a developer account.
Alternatively, the command-line tools installer .dmg can be downloaded from the Xcode download site, but you will need a (free) developer account and will need to pick the appropriate download for your version of macOS.
-
-
Install Qt (as "build" user, if created), approx. 3GB:
- Mount qt-opensource-mac-x64-5.12.8.dmg
- Launch qt-opensource-mac-x64-5.12.8
- Next, Skip, Continue, (optionally change the installation directory), Continue
- Qt is entirely self-contained and can be installed anywhere. It defaults to ~/Qt5.12.8.
- If you only have the command-line tools installed, the Qt installer will complain that "You need to install Xcode and set up Xcode command line tools." Simply click OK.
- Expand Qt 5.12.8 and select "macOS", Continue
- Select "I have read and agree..." and Continue, Install
- Uncheck "Launch Qt Creator", Done
- Eject qt-opensource-mac-x64-5.12.8
Build
-
Build OSCAR:
git clone https://gitlab.com/CrimsonNape/OSCAR-code.git cd OSCAR-code mkdir build cd build ~/Qt5.12.8/5.12.8/clang_64/bin/qmake ../oscar/oscar.pro make
The application is in OSCAR.app.
-
(Optional) Package for distribution:
make dist-mac
The dmg is at OSCAR.dmg.
(Optional) Using Qt Creator
- Launch Qt Creator where you installed Qt above, by default ~/Qt5.12.8/Qt Creator.app.
- File > Open File or Project... and select ~/OSCAR-code/oscar/oscar.pro (or wherever you cloned it above), then click "Configure Project".
- Configure building:
- Click on "Projects" in the left panel.
- Under Build Settings, in the "Edit build configuration" drop-down menu, select "Release".
- Click to expand "Details" for the qmake build step.
- Uncheck "Enable Qt Quick Compiler", click "No" to defer recompiling.
- Configure packaging for distribution:
- Click "Clone..." to the right of the "Edit build configuration" drop-down menu.
- Name the new configuration "Deploy".
- Click to expand "Details" for the Make build step.
- Set the Make arguments for the Make step to "dist-mac".
- To build OSCAR, select "Release" from the "oscar" button in the left panel. Then select Build > Build Project "oscar". The application is in OSCAR.app.
- To build OSCAR and package for distribution, select "Deploy" from the "oscar" button in the left panel. Then select Build > Build Project "oscar". The dmg is at OSCAR.dmg.
- Progress in "Compile Output" will pause for several seconds while "Creating .dmg". This is normal.