From a4f94c812a4da7254d31af4061a8f234a1e0e23d Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 23 May 2023 13:56:22 +1000 Subject: Annote E V E R Y T H I N G with license info --- test/CMakeLists.txt | 6 ++++++ test/fixtures/CMakeLists.txt | 6 ++++++ test/fixtures/i2c_fixture.hpp | 6 ++++++ test/fixtures/spi_fixture.hpp | 6 ++++++ test/main/CMakeLists.txt | 6 ++++++ test/main/main.cpp | 6 ++++++ test/sdkconfig.test | 4 ++++ 7 files changed, 40 insertions(+) (limited to 'test') diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index fdd2735f..1b90a614 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline + * + * SPDX-License-Identifier: GPL-3.0-only + */ + cmake_minimum_required(VERSION 3.16) include($ENV{PROJ_PATH}/tools/cmake/common.cmake) diff --git a/test/fixtures/CMakeLists.txt b/test/fixtures/CMakeLists.txt index fd98a7cd..9895cf8d 100644 --- a/test/fixtures/CMakeLists.txt +++ b/test/fixtures/CMakeLists.txt @@ -1 +1,7 @@ +/* + * Copyright 2023 jacqueline + * + * SPDX-License-Identifier: GPL-3.0-only + */ + idf_component_register(INCLUDE_DIRS "." REQUIRES drivers) diff --git a/test/fixtures/i2c_fixture.hpp b/test/fixtures/i2c_fixture.hpp index 54794591..e7e5d42d 100644 --- a/test/fixtures/i2c_fixture.hpp +++ b/test/fixtures/i2c_fixture.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include "catch2/catch.hpp" diff --git a/test/fixtures/spi_fixture.hpp b/test/fixtures/spi_fixture.hpp index c2db484c..a5e9cac3 100644 --- a/test/fixtures/spi_fixture.hpp +++ b/test/fixtures/spi_fixture.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include "catch2/catch.hpp" diff --git a/test/main/CMakeLists.txt b/test/main/CMakeLists.txt index f0d35421..d629441d 100644 --- a/test/main/CMakeLists.txt +++ b/test/main/CMakeLists.txt @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline + * + * SPDX-License-Identifier: GPL-3.0-only + */ + idf_component_register( SRCS "main.cpp" INCLUDE_DIRS "." diff --git a/test/main/main.cpp b/test/main/main.cpp index e012218c..2a935397 100644 --- a/test/main/main.cpp +++ b/test/main/main.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include #include diff --git a/test/sdkconfig.test b/test/sdkconfig.test index 1247298b..42c5d0d0 100644 --- a/test/sdkconfig.test +++ b/test/sdkconfig.test @@ -1,3 +1,7 @@ +# Copyright 2023 jacqueline +# +# SPDX-License-Identifier: CC0-1.0 + CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y CONFIG_BOOTLOADER_LOG_LEVEL=3 CONFIG_COMPILER_CXX_EXCEPTIONS=y -- cgit v1.2.3