zephyr/tests/boards/intel_s1000_crb/CMakeLists.txt

22 lines
496 B
CMake

cmake_minimum_required(VERSION 3.8.2)
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)