blob: e964bb824cf5c8c534e961a7fc69c55e52ff5921 [file] [log] [blame]
cmake_minimum_required(VERSION 3.13.1)
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(intel_s1000_crb)
if(CONFIG_I2C)
target_sources(app PRIVATE src/i2c_test.c)
target_compile_definitions(app PRIVATE -DLED_LIGHT_PAT=1)
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()
if(CONFIG_SPI)
target_sources(app PRIVATE src/spi_flash.c)
endif()
target_sources(app PRIVATE src/main.c)