[go: up one dir, main page]

Menu

[408fbf]: / SNEmodule / SConscript  Maximize  Restore  History

Download this file

48 lines (39 with data), 1.1 kB

 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
Import('env')
envDict = env.Dictionary()
build = envDict.get('BUILD_OPT')
build_root = envDict.get('BUILD_ROOT')
env['CPPPATH'] += [ build_root,
build_root+'3rdParty/scew-1.1.4/',
'.',
'../commonLib',
'Plugins',
'/usr/include',
'common/',
]
if build == 'release':
env['LINKFLAGS'] += ' -rdynamic '
env['CCFLAGS'] += ' -Wall '
env['LIBPATH'] += [
'../lib',
]
env['LIBS'] += [
'commonsneui',
'sneportscan',
'snedisco',
'sneplugin',
'snecommon',
'scew-1.1.4',
'expat',
'uuid',
'snenio',
'dl',
]
sources = [
'main.c',
'sne_master_action.c',
'sne_slave_action.c',
]
target = [
'../snet',
]
env.Program(target,sources)