forked from dekz/dcrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wscript
33 lines (27 loc) · 950 Bytes
/
wscript
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
28
29
30
31
32
33
import Options
import sys
srcdir = "."
blddir = "build"
VERSION = "0.0.1"
def set_options(opt):
opt.tool_options('compiler_cxx')
opt.tool_options('misc')
opt.add_option('--without-ecdsa'
, action='store'
, default=False
, help='Skip over ECDSA bindings'
, dest='without_ecdsa')
def configure(conf):
conf.check_tool("compiler_cxx")
conf.check_tool("node_addon")
o = Options.options
if Options.options.without_ecdsa or not conf.check(header_name='openssl/ecdsa.h', compile_mode='cxx'):
print 'Configuring Dcrypt to skip bindings on ECDSA'
conf.env["WITHOUT_ECDSA"] = True
conf.env.append_value("CXXFLAGS", "-DWITH_ECDSA=0")
def build(bld):
obj = bld.new_task_gen("cxx", "shlib", "node_addon")
obj.target = 'dcrypt'
obj.find_sources_in_dirs("src")
if bld.env["WITHOUT_ECDSA"]:
print 'Building Dcrypt without ECDSA support'