mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-07 16:33:28 +00:00
Update the files which contain no license information with the 'Apache-2.0' SPDX license identifier. Many source files in the tree are missing licensing information, which makes it harder for compliance tools to determine the correct license. By default all files without license information are under the default license of Zephyr, which is Apache version 2. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
18 lines
787 B
CMake
18 lines
787 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_PCA9685 pwm_pca9685.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_DW pwm_dw.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_QMSI pwm_qmsi.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_STM32 pwm_stm32.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_SIFIVE pwm_sifive.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_NRF5_SW pwm_nrf5_sw.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_NRFX pwm_nrfx.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_MCUX_FTM pwm_mcux_ftm.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_IMX pwm_imx.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_LED_ESP32 pwm_led_esp32.c)
|
|
zephyr_library_sources_ifdef(CONFIG_PWM_SAM pwm_sam.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE pwm_handlers.c)
|