1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27#!/usr/bin/env python
import Options
from os import unlink, symlink
from os.path import exists, lexists
srcdir = "."
blddir = "build"
VERSION = "0.1.3"
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='libsparsehash', mandatory=1, args='--cflags --libs')
conf.env.append_value('CXXFLAGS', ['-O2'])
def build(bld):
obj = bld.new_task_gen("cxx", "shlib", "node_addon")
obj.target = "irf"
obj.source = ['irf/MurmurHash3.cpp', 'irf/randomForest.cpp', 'irf/node.cpp']