blob: d81282bab57c23a4f47324696c585f5fd6b4df1f [file] [log] [blame]
Miguel Osorio03f2e232019-09-17 19:44:37 -07001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4
Miguel Young de la Sotae9a769b2020-02-25 11:19:04 -05005sw_examples_demos = declare_dependency(
6 link_with: static_library(
7 'sw_examples_demos',
8 sources: ['demos.c'],
9 dependencies: [
10 sw_lib_runtime_hart,
11 sw_lib_dif_gpio,
Miguel Young de la Sota58ca4b02020-07-23 11:04:55 -040012 sw_lib_dif_spi_device,
Miguel Young de la Sota69a130b2020-09-22 11:41:15 -040013 sw_lib_runtime_log,
Miguel Young de la Sota4e142652020-09-21 12:31:24 -040014 sw_lib_dif_uart,
Miguel Young de la Sotae9a769b2020-02-25 11:19:04 -050015 ],
16 )
17)
18
Miguel Osorio03f2e232019-09-17 19:44:37 -070019subdir('hello_usbdev')
20subdir('hello_world')