Commit 3f47f596 by Andrew Nesbitt

Renamed sass.cpp to binding.cpp

parent 93b79e29
......@@ -24,4 +24,4 @@ void RegisterModule(v8::Handle<v8::Object> target) {
NODE_SET_METHOD(target, "render", Render);
}
NODE_MODULE(sass, RegisterModule);
\ No newline at end of file
NODE_MODULE(binding, RegisterModule);
\ No newline at end of file
var binding = require('./build/Release/sass')
var binding = require('./build/Release/binding')
exports.render = binding.render;
\ No newline at end of file
import Options
from os import unlink, symlink, popen
from os.path import exists
srcdir = "."
blddir = "build"
VERSION = "0.0.1"
......@@ -11,5 +15,6 @@ def configure(conf):
def build(bld):
obj = bld.new_task_gen("cxx", "shlib", "node_addon")
obj.target = "sass"
obj.source = "sass.cpp"
obj.uselib = "sass"
obj.target = "binding"
obj.source = "binding.cpp "
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