Commit 93b79e29 by Andrew Nesbitt

Using node-gyp to build stuff now instead

Still not working right though
parent 6b73d137
......@@ -6,7 +6,7 @@ Node bindings to libsass
## Usage
CXX=clang node-waf configure && node-waf build
node-gyp configure && node-gyp build
var sass = require('./sass');
sass.render('scss string');
......
......@@ -2,7 +2,8 @@
'targets': [
{
'target_name': 'sass',
'sources': [ 'sass.cc' ]
'sources': [ 'sass.cpp' ],
'libraries': ['-lsass']
}
]
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment