Skip to content

Commit eb36e04

Browse files
committed
Formalize license headers
1 parent ec5e8b5 commit eb36e04

8 files changed

Lines changed: 15 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: MIT
2+
13
name: CI
24

35
on:

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: MIT
2+
13
cmake_minimum_required(VERSION 3.30)
24

35
if(DEFINED ENV{VCPKG_ROOT} AND NOT DEFINED CMAKE_TOOLCHAIN_FILE)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2026 iris-cpp
3+
Copyright (c) 2026 The Iris Project Contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

include/iris/config.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef IRIS_CONFIG_HPP
22
#define IRIS_CONFIG_HPP
33

4+
// SPDX-License-Identifier: MIT
5+
46
#include <version>
57

68
#define IRIS_STRINGIZE_I(x) #x

include/iris/type_traits.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef IRIS_TYPE_TRAITS_HPP
22
#define IRIS_TYPE_TRAITS_HPP
33

4+
// SPDX-License-Identifier: MIT
5+
46
#include <iris/config.hpp>
57

68
#include <type_traits>

test/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: MIT
2+
13
# For Iris-specific tests.
24
add_library(iris_cxx_test INTERFACE)
35
set_target_properties(iris_cxx_test PROPERTIES CXX_EXTENSIONS OFF)

test/test.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef IRIS_TEST_TEST_HPP
22
#define IRIS_TEST_TEST_HPP
33

4+
// SPDX-License-Identifier: MIT
5+
46
#include <iris/config.hpp>
57

68
#include <catch2/catch_test_macros.hpp>

test/type_traits.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: MIT
2+
13
#include "test.hpp"
24

35
#include <iris/type_traits.hpp>

0 commit comments

Comments
 (0)