Add binding.gyp for node v0.9

This commit is contained in:
Miao Jiang 2013-01-05 21:22:11 +08:00
parent afab82abcf
commit 03e419747d

11
binding.gyp Normal file
View file

@ -0,0 +1,11 @@
{
'targets': [
{
'target_name': 'node-curl',
'cflags': ['-Wall', '-O1', '-fno-inline-functions'],
'cflags_cc': ['-Wall', '-O1', '-fno-inline-functions'],
'sources': ['src/node-curl.cc'],
'libraries': ['-lcurl']
}
]
}