mirror of
https://github.com/espressif/openthread.git
synced 2026-07-31 16:17:47 +00:00
[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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user