forked from sbelalex/catapult-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
conanfile.txt
77 lines (68 loc) · 1.79 KB
/
conanfile.txt
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[requires]
# release dependencies
boost/1.76.0
cppzmq/4.7.1@nemtech/stable
mongo-cxx-driver/3.6.3@nemtech/stable
openssl/1.1.1g@nemtech/stable
rocksdb/6.20.3@nemtech/stable
# test dependencies
benchmark/1.5.3@nemtech/stable
gtest/1.10.0
[generators]
cmake
cmake_find_package
[options]
# release dependencies - boost
boost:shared = True
boost:bzip2 = False
boost:zlib = False
boost:without_atomic = False
boost:without_chrono = False
boost:without_container = False
boost:without_context = True
boost:without_contract = True
boost:without_coroutine = True
boost:without_date_time = False
boost:without_exception = False
boost:without_fiber = True
boost:without_filesystem = False
boost:without_graph = True
boost:without_graph_parallel = True
# boost:without_headers = True
boost:without_iostreams = True
boost:without_json = True
boost:without_locale = False
boost:without_log = False
boost:without_math = False
boost:without_mpi = True
boost:without_nowide = True
boost:without_program_options = False
boost:without_python = True
boost:without_random = False
boost:without_regex = False
boost:without_serialization = True
boost:without_stacktrace = True
boost:without_system = False
boost:without_test = True
boost:without_thread = False
boost:without_timer = True
boost:without_type_erasure = True
boost:without_wave = True
# release dependencies - other
mongo-cxx-driver:shared = True
openssl:shared = True
rocksdb:shared = True
zeromq:shared = True
# test dependencies
benchmark:shared = False
gtest:shared = False
gtest:build_gmock = False
gtest:no_main = True
[imports]
# on windows, copy shared libraries into bin directory
bin, *.dll -> ./bin
lib, *.dll -> ./bin
# on macos, copy shared libraries into deps directory
lib, *.dylib* -> ./deps
# on linux, copy shared libraries into deps directory
lib, *.so* -> ./deps