[cmake] list targets one per line in unit test CMakeLists (#5541)

This commit changes the unit tests `CMakeLists.txt` file to list
the targets in `set_target_properties()` call one per line. This
helps make it easier to read, also reduces the chance of merge
conflicts when new unit tests are added.
This commit is contained in:
Abtin Keshavarzian
2020-09-18 15:02:36 -07:00
committed by GitHub
parent 3820c3b6ed
commit 0628746701
+24 -1
View File
@@ -582,7 +582,30 @@ target_link_libraries(test-timer
add_test(NAME test-timer COMMAND test-timer)
set_target_properties(
test-aes test-checksum test-child test-child-table test-flash test-heap test-hmac-sha256 test-ip6-address test-link-quality test-linked-list test-lowpan test-mac-frame test-message test-message-queue test-multicast-listeners-table test-ndproxy-table test-netif test-network-data test-pool test-priority-queue test-pskc test-steering-data test-string test-timer
test-aes
test-checksum
test-child
test-child-table
test-flash
test-heap
test-hmac-sha256
test-ip6-address
test-link-quality
test-linked-list
test-lowpan
test-mac-frame
test-message
test-message-queue
test-multicast-listeners-table
test-ndproxy-table
test-netif
test-network-data
test-pool
test-priority-queue
test-pskc
test-steering-data
test-string
test-timer
PROPERTIES
C_STANDARD 99
CXX_STANDARD 11