first commit
This commit is contained in:
commit
f8f934a119
18 changed files with 901 additions and 0 deletions
15
wscript
Normal file
15
wscript
Normal file
|
@ -0,0 +1,15 @@
|
|||
def set_options(opt):
|
||||
opt.tool_options('compiler_cxx')
|
||||
|
||||
def configure(conf):
|
||||
conf.check_tool('compiler_cxx')
|
||||
conf.check_tool('node_addon')
|
||||
conf.env.append_unique('CXXFLAGS', ['-Wall', '-O2', '-std=c++0x'])
|
||||
conf.env['LIB_CURL'] = 'curl'
|
||||
|
||||
def build(bld):
|
||||
obj = bld.new_task_gen('cxx', 'shlib', 'node_addon', uselib="CURL")
|
||||
obj.target = 'node-curl'
|
||||
obj.source = [
|
||||
'src/node-curl.cc',
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue