2013-09-09 07:35:57 +00:00
|
|
|
# Build instructions (Mac)
|
|
|
|
|
2013-08-14 22:43:35 +00:00
|
|
|
## Prerequisites
|
|
|
|
|
2015-02-02 08:21:23 +00:00
|
|
|
* OS X >= 10.8
|
2014-05-09 02:04:13 +00:00
|
|
|
* [Xcode](https://developer.apple.com/technologies/tools/) >= 5.1
|
2014-05-16 01:07:08 +00:00
|
|
|
* [node.js](http://nodejs.org) (external).
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2013-11-26 03:46:45 +00:00
|
|
|
If you are using the python downloaded by Homebrew, you also need to install
|
|
|
|
following python modules:
|
|
|
|
|
|
|
|
* pyobjc
|
|
|
|
|
2013-08-14 22:43:35 +00:00
|
|
|
## Getting the code
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ git clone https://github.com/atom/atom-shell.git
|
|
|
|
```
|
|
|
|
|
|
|
|
## Bootstrapping
|
|
|
|
|
2013-08-29 14:37:51 +00:00
|
|
|
The bootstrap script will download all necessary build dependencies and create
|
|
|
|
build project files. Notice that we're using `ninja` to build `atom-shell` so
|
|
|
|
there is no Xcode project generated.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
$ cd atom-shell
|
2014-12-08 17:07:29 +00:00
|
|
|
$ ./script/bootstrap.py -v
|
2013-08-14 22:43:35 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
Build both `Release` and `Debug` targets:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ ./script/build.py
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also only build the `Debug` target:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ ./script/build.py -c Debug
|
|
|
|
```
|
|
|
|
|
|
|
|
After building is done, you can find `Atom.app` under `out/Debug`.
|
|
|
|
|
2014-05-05 01:48:44 +00:00
|
|
|
## 32bit support
|
|
|
|
|
|
|
|
Currently atom-shell can only be built for 64bit target on OS X, and there is no
|
|
|
|
plan to support 32bit on OS X in future.
|
|
|
|
|
2013-08-14 22:43:35 +00:00
|
|
|
## Tests
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ ./script/test.py
|
|
|
|
```
|