mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
694 B
27 lines
694 B
13 years ago
|
#!/usr/bin/env python
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
script_dir = os.path.dirname(__file__)
|
||
|
node_root = os.path.normpath(os.path.join(script_dir, os.pardir))
|
||
|
|
||
|
sys.path.insert(0, os.path.join(node_root, 'tools', 'gyp', 'pylib'))
|
||
|
import gyp
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
args = sys.argv[1:]
|
||
|
addon_gypi = os.path.join(node_root, 'tools', 'addon.gypi')
|
||
|
common_gypi = os.path.join(node_root, 'common.gypi')
|
||
|
args.extend(['-I', addon_gypi])
|
||
|
args.extend(['-I', common_gypi])
|
||
|
args.extend(['-Dlibrary=shared_library'])
|
||
|
args.extend(['-Dvisibility=default'])
|
||
|
args.extend(['--depth=.']);
|
||
|
|
||
|
gyp_args = list(args)
|
||
|
rc = gyp.main(gyp_args)
|
||
|
if rc != 0:
|
||
|
print 'Error running GYP'
|
||
|
sys.exit(rc)
|
||
|
|