forked from SiliconLabsSoftware/z-wave-protocol-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
56 lines (51 loc) · 1.3 KB
/
CMakeLists.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
# Cluster Mapper Fixture test
target_add_unittest(dotdot_mapper NAME dotdot_cluster_mapper_fixt_test SOURCES
dotdot_cluster_mapper_fixt_test.c)
# Basic Cluster Mapper test
target_add_unittest(
dotdot_mapper
NAME
basic_cluster_mapper_test
SOURCES
basic_cluster_mapper_test.cpp
DEPENDS
zpc_attribute_store_test_helper
unify_dotdot_attribute_store
zwave_definitions)
# OnOff Cluster Mapper test
target_add_unittest(
dotdot_mapper
NAME
on_off_cluster_mapper_test
SOURCES
on_off_cluster_mapper_test.c
DEPENDS
zpc_attribute_store_test_helper
unify_dotdot_attribute_store
uic_dotdot_mqtt_mock
zwave_network_management_mock)
# Binding Cluster Mapper Helper test
target_add_unittest(
dotdot_mapper_binding_cluster_helper
NAME
binding_cluster_mapper_helper_test
SOURCES
binding_cluster_mapper_helper_test.c
DEPENDS
zpc_attribute_store_test_helper)
# Binding Cluster Mapper test
target_add_unittest(
dotdot_mapper
NAME
binding_cluster_mapper_test
SOURCES
binding_cluster_mapper_test.c
DEPENDS
zpc_attribute_store_test_helper
zwave_network_management_mock
uic_dotdot_mqtt_mock)
if(${ZPC_BUILD_TESTING_PROPERTY_DISABLED})
message(WARNING "Please fix this test")
set_tests_properties(binding_cluster_mapper_test
PROPERTIES DISABLED True)
endif()