forked from xmppo/node-expat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwscript
More file actions
26 lines (21 loc) · 724 Bytes
/
wscript
File metadata and controls
26 lines (21 loc) · 724 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
srcdir = '.'
blddir = 'build'
VERSION = '1.1.0'
def set_options(opt):
opt.tool_options('compiler_cxx')
def configure(conf):
conf.check_tool('compiler_cxx')
conf.check_tool('node_addon')
conf.check( header_name='expat.h',
mandatory = True,
includes = [ '/usr/include', '/usr/local/include' ],
errmsg = "not installed")
conf.env['LIB_EXPAT'] = ['expat']
def build(bld):
obj = bld.new_task_gen('cxx', 'shlib', 'node_addon')
obj.target = 'node_expat'
obj.source = 'node-expat.cc'
obj.includes = [ '/usr/include', '/usr/local/include' ]
obj.libpath = [ '/usr/lib', '/usr/lib64', '/usr/local/lib', '/usr/local/lib64' ]
obj.lib = 'expat'
obj.uselib = 'EXPAT'