blob: 0cea79a129631e6735ebc0aeecfd77683e12a188 [file] [log] [blame]
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(NONE)
if(CONFIG_I2C)
target_sources(app PRIVATE src/i2c_test.c)
endif()
if(CONFIG_GPIO)
target_sources(app PRIVATE src/gpio_test.c)
endif()
if(CONFIG_DMA)
target_sources(app PRIVATE src/dma_test.c)
endif()
if(CONFIG_I2S)
target_sources(app PRIVATE src/i2s_test.c)
endif()
if(CONFIG_USB)
target_sources(app PRIVATE src/test_hid.c)
endif()
target_sources(app PRIVATE src/main.c)