-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwscript
More file actions
28 lines (23 loc) · 735 Bytes
/
wscript
File metadata and controls
28 lines (23 loc) · 735 Bytes
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
#!/usr/bin/python
APPNAME = 'classifier'
VERSION = '0.5.0'
top = '.'
out = 'build'
def options(opt):
opt.load('compiler_cxx')
def configure(conf):
conf.load('compiler_cxx')
conf.env.append_unique('CXXFLAGS',
['-std=c++0x',
'-O2',
'-W',
'-Wall'])
conf.env.append_unique('LINKFLAGS', ['-std=c++0x',
'-O2',
'-W',
'-Wall'])
conf.env.HPREFIX = conf.env.PREFIX + '/include/classifier'
def build(bld):
# bld.recurse('binary')
bld.recurse('multiclass')
bld.recurse('test')