-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
47 lines (36 loc) · 1.16 KB
/
CMakeLists.txt
File metadata and controls
47 lines (36 loc) · 1.16 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
if (NOT TAURUS_NODE_AS_LIB)
add_subdirectory(net_plugin)
add_subdirectory(net_api_plugin)
endif()
add_subdirectory(http_plugin)
add_subdirectory(http_client_plugin)
add_subdirectory(chain_plugin)
add_subdirectory(chain_api_plugin)
add_subdirectory(producer_plugin)
if (NOT TAURUS_NODE_AS_LIB)
add_subdirectory(producer_api_plugin)
endif()
add_subdirectory(producer_ha_plugin)
add_subdirectory(state_history_plugin)
if (NOT TAURUS_NODE_AS_LIB)
add_subdirectory(trace_api_plugin)
endif()
add_subdirectory(signature_provider_plugin)
add_subdirectory(resource_monitor_plugin)
add_subdirectory(wallet_plugin)
if (NOT TAURUS_NODE_AS_LIB)
add_subdirectory(wallet_api_plugin)
add_subdirectory(txn_test_gen_plugin)
add_subdirectory(db_size_api_plugin)
add_subdirectory(login_plugin)
add_subdirectory(test_control_plugin)
add_subdirectory(test_control_api_plugin)
endif()
add_subdirectory(amqp_trx_plugin)
add_subdirectory(amqp_trx_api_plugin)
if (NOT TAURUS_NODE_AS_LIB)
add_subdirectory(rodeos_plugin)
add_subdirectory(event_streamer_plugin)
endif()
# Forward variables to top level so packaging picks them up
set(CPACK_DEBIAN_PACKAGE_DEPENDS ${CPACK_DEBIAN_PACKAGE_DEPENDS} PARENT_SCOPE)