-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSConscript
More file actions
32 lines (24 loc) · 848 Bytes
/
SConscript
File metadata and controls
32 lines (24 loc) · 848 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
29
30
31
#-------------------------------------------------------------------------------
#
# qudp project build construction script
#
import os
#-------------------------------------------------------------------------------
#
# General
#
ProductName = 'ip_qpipe'
Import('qtEnv')
env = qtEnv.Clone()
env['PRODUCT_NAME'] = ProductName
#-------------------------------------------------------------------------------
#
# Build hierarchy
#
SConscript('src/SConscript',
exports = 'env',
variant_dir = '#build/%s/%s' % (env['VARIANT'], ProductName), duplicate = 0)
SConscript('test/SConscript',
exports = 'env',
variant_dir = '#build/%s/%s' % (env['VARIANT'], os.path.join(ProductName, 'test') ), duplicate = 0)
#-------------------------------------------------------------------------------