diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-16 17:45:44 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-17 12:15:04 -0600 |
commit | d58be71b5bf640a117b301d74f4e82110a689561 (patch) | |
tree | 990a3af524df6fbf2c462ac426e9353bd6662135 /CMakeLists.txt | |
parent | 82634b3b8eabcc966c5480c4a58b81dbcb49d022 (diff) |
copyright notices, coroutines
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bb5abcf..35a63ad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,8 @@ +# CMAkeLists.txt - Main build script for sbc-harness +# +# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> +# SPDX-Licence-Identifier: AGPL-3.0-or-later + cmake_minimum_required(VERSION 3.13) set(PICO_SDK_PATH "${CMAKE_SOURCE_DIR}/3rd-party/pico-sdk") @@ -10,6 +15,7 @@ pico_sdk_init() add_executable(sbc_harness) target_sources(sbc_harness PUBLIC main.c + coroutine.c usb_common.c usb_keyboard.c ) |