forked from chen3feng/blade-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typhoon.conf
37 lines (31 loc) · 841 Bytes
/
typhoon.conf
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
# Configure file for using blade in typhoon
cc_test_config(
dynamic_link=False,
heap_check='',
gperftools_libs=['thirdparty/perftools:tcmalloc'],
gperftools_debug_libs=['thirdparty/perftools:tcmalloc_debug'],
gtest_libs=['thirdparty/gtest:gtest'],
gtest_main_libs=['thirdparty/gtest:gtest_main']
)
distcc_config(
enabled=False
)
link_config(
link_on_tmp=False,
enable_dccc=False
)
proto_library_config(
protoc='thirdparty/protobuf/bin/protoc',
protobuf_libs=['thirdparty/protobuf:protobuf'],
protobuf_path='thirdparty',
protobuf_incs = 'thirdparty',
protobuf_php_path='thirdparty/Protobuf-PHP/library',
protoc_php_plugin='thirdparty/Protobuf-PHP/protoc-gen-php.php'
)
cc_config(
extra_incs='thirdparty'
)
java_config(
source_version='1.6',
target_version='1.6'
)