Skip to content

Commit 7832db4

Browse files
anhmolteivindj-nordic
authored andcommitted
softdevice_handler: fix CMake style
No space inbetween keywords and opening brackets. Two spaces for indentation. Signed-off-by: Andreas Moltumyr <[email protected]>
1 parent 87ba600 commit 7832db4

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

subsys/softdevice_handler/CMakeLists.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,21 @@ zephyr_library_sources(
1010
irq_connect.c
1111
)
1212

13-
if (CONFIG_SOFTDEVICE_S115)
13+
if(CONFIG_SOFTDEVICE_S115)
1414
zephyr_library_sources(irq_forward.s)
1515
# Suppress the swap_helper.S file so that z_arm_svc can be defined manually
1616
set(cortex_m_dir ${ZEPHYR_BASE}/arch/arm/core/cortex_m)
17-
set_property(SOURCE ${cortex_m_dir}/swap_helper.S
18-
DIRECTORY ${cortex_m_dir}
19-
PROPERTY HEADER_FILE_ONLY ON)
20-
17+
set_property(
18+
SOURCE ${cortex_m_dir}/swap_helper.S
19+
DIRECTORY ${cortex_m_dir}
20+
PROPERTY HEADER_FILE_ONLY ON
21+
)
2122
target_link_options(app PUBLIC "-Wl,--defsym=z_arm_svc=SVC_Handler")
2223
endif()
2324

24-
if (CONFIG_NRF_SDH_SOC)
25+
if(CONFIG_NRF_SDH_SOC)
2526
zephyr_library_sources(nrf_sdh_soc.c)
2627
endif()
27-
if (CONFIG_NRF_SDH_BLE)
28+
if(CONFIG_NRF_SDH_BLE)
2829
zephyr_library_sources(nrf_sdh_ble.c)
2930
endif()

0 commit comments

Comments
 (0)