codecamp

Electron 构建步骤 (OS X)

遵循下面的引导,在 OS X 上构建 Electron .

前提

如果你通过 Homebrew 使用 Python 下载,需要安装下面的 Python 模块:

  • pyobjc

获取代码

$ git clone https://github.com/electron/electron.git

Bootstrapping

bootstrap 脚本也是必要下载的构建依赖,来创建项目文件.注意我们使用的是 ninja 来构建 Electron,所以没有生成 Xcode 项目.

$ cd electron
$ ./script/bootstrap.py -v

构建

创建 Release  Debug target:

$ ./script/build.py

可以只创建 Debug target:

$ ./script/build.py -c D

创建完毕, 可以在 out/D 下面找到 Electron.app.

32位支持

在 OS X 上,构建 Electron 只支持 64位的,不支持 32位的 .

测试

测试你的修改是否符合项目代码风格,使用:

$ ./script/cpplint.py

测试有效性使用:

$ ./script/test.py
Electron 构建系统概览
Electron 构建步骤 (Windows)
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }