forked from gk7huki/rvhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_config.py.dist
64 lines (56 loc) · 2.02 KB
/
build_config.py.dist
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
51
52
53
54
55
56
57
58
59
60
61
62
# Build system copied/modified from
# http://www.scons.org/cgi-bin/wiki/AdvancedBuildExample
# Original by [email protected]
import os
import glob
## This module requires libraries:
## ACE
## KadC
## reudp
## netcomgrp
## Qt
## Boost (for serialize)
## DirectX 7 lobby libs
## libz (needed by KadC)
## pthreadGC (needed by KadC)
qt_dir = '/path/to/qt_install'
# Only needed under Linux
# qt_pkg_config_path = os.path.join(qt_dir, 'lib/pkgconfig')
# Under windows can be empty:
qt_pkg_config_path = '';
## If libraries are in some non standard paths, specify them here
## Use convention <platform>/[Debug|Release]/library for the libs
## that support it
## Modify to suit your compiling environment
lib_search_path = ['#../../../libs/build/$BUILD_VARIANT',
'c:/Boost/lib',
'#../../libreudp/trunk/build/$BUILD_PLATFORM/$BUILD_VARIANT',
'#../../libdht/trunk/build/$BUILD_PLATFORM/$BUILD_VARIANT',
'#../../netcomgrp/build/$BUILD_PLATFORM/$BUILD_VARIANT']
## Where we should find things to include
## Modify to suit your compiling environment
include_search_path = ['#../../../libs/ACE_wrappers',
'c:/Boost/include/boost-1_33',
# For KadC
'#../../../libs',
'#./src',
'#../../libreudp/trunk/src',
'#../../libdht/trunk/src',
'#../../netcomgrp/src']
libs = ['netcomgrp','reudp','dht','ACE',
'KadC','pthreadGC','z',
'boost_serialization',
# Needed by Qt (platform dependent?)
#'png','tiff','rt'
]
defs = ['ACE_AS_STATIC_LIBS', ('ACE_NTRACE', 1),
'__KADC_DO_NOT_REDEFINE_ALLOC_MACROS__',
'_REENTRANT']
flgs = ['-Wall']
#### You should not change these. These are only here
#### If you want to start your own build setup with a
#### different layout than mine.
source_base_dir = 'src'
resource_file = 'resource.res'
build_base_dir = 'build'
target_name = 'rv_house'