From b6a62b816fbaf86c656f3247a9dbe7037aa7589c Mon Sep 17 00:00:00 2001 From: andrew morton Date: Sat, 16 Mar 2013 22:26:27 -0700 Subject: [PATCH] Remove the old node-waf script. --- wscript | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 wscript diff --git a/wscript b/wscript deleted file mode 100644 index 576c6d1..0000000 --- a/wscript +++ /dev/null @@ -1,18 +0,0 @@ -import Options -from os import unlink, symlink, popen -from os.path import exists - -def set_options(opt): - opt.tool_options("compiler_cxx") - -def configure(conf): - conf.check_tool("compiler_cxx") - conf.check_tool("node_addon") - conf.check_cfg(package='exiv2', args='--cflags --libs') - -def build(bld): - obj = bld.new_task_gen("cxx", "shlib", "node_addon") - obj.cxxflags = ["-g", "-D_FILE_OFFSET_BITS=64", "-D_LARGEFILE_SOURCE", "-Wall"] - obj.target = "exiv2" - obj.source = "exiv2node.cc" - obj.uselib = "EXIV2"