-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathwscript
50 lines (42 loc) · 1.23 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
top = '../..'
def options(opt):
opt.load('compiler_c compiler_cxx')
def configure(conf):
conf.load('compiler_c compiler_cxx')
# libraries with full pkg-config data
conf.check_cfg(package='ncursesw', args=['--cflags', '--libs'])
conf.check_cfg(package='panel', args=['--cflags', '--libs'])
conf.check_cfg(package='nanomsg', args=['--cflags', '--libs'])
def build(bld):
maiden_repl_sources = [
'src/io.c',
'src/ui.c',
'src/page.c',
'src/pages.c',
'src/main.c',
]
bld.program(features='c cxx cxxprogram',
source=maiden_repl_sources,
target='maiden-repl',
includes=[
'src',
],
use=[
'NCURSESW',
'PANEL',
'NANOMSG'
],
lib=[
'pthread',
'readline',
'ncursesw',
'panel',
'nanomsg'
],
cxxflags=[
'-O2',
'-Wall',
'-Wextra',
'-Werror',
'-pedantic'
])