2012-10-29 71 views
3

我需要做些什麼才能讓GYP爲Mac OS X生成典型的unix-like makefile stack?在Mac OS X上使用GYP生成Makefile?

目前,我得到它採用以下配置文件生成的XCode構建項目:

{ 
    "targets": [ 
    { 
     "target_name": "hello", 
     'type': 'executable', 
     "sources": [ "hello.cc" ] 
    } 
    ] 
} 

,然後運行在命令行下面:

gyp --depth binding.gyp

這會產生一個目錄:binding.xcodeproj其中包含XCode項目。

我寧願要爲OSX製作標準的unix-like build。另外,我將要將此項目導入Windows,我將使用MS編譯器。

回答

5

找到了答案。非常簡單,真的。謝謝TooTallNate。我以前的方式得到了一個錯誤。你明確這樣做:

gyp --depth=./ binding.gyp --format=make