forked from chrisdickinson/node-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwscript
More file actions
Latest commit
34 lines (29 loc) · 907 Bytes
/
Copy pathwscript
File metadata and controls
34 lines (29 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
importOptions
fromosimportunlink, symlink, popen
fromos.pathimportexists
srcdir='.'
blddir='build'
VERSION='0.0.1'
defset_options(opt):
opt.tool_options('compiler_cxx')
opt.tool_options('python')
defconfigure(conf):
conf.check_tool('compiler_cxx')
conf.check_tool('node_addon')
conf.check_tool('osx')
conf.check_tool('python')
defbuild(bld):
obj=bld.new_task_gen('cxx', 'shlib', 'node_addon', 'py', 'pyembed', 'pyext')
obj.env['FRAMEWORK'] ='python'
obj.target='binding'
obj.source="binding.cc"
obj.init_py()
obj.init_pyembed()
defshutdown():
# HACK to get binding.node out of build directory.
# better way to do this?
ifOptions.commands['clean']:
ifexists('binding.node'): unlink('binding.node')
else:
ifexists('build/default/binding.node') andnotexists('binding.node'):
symlink('build/default/binding.node', 'binding.node')