Skip to content

Commit bafc708

Browse files
committed
add SPDX identifiers
Signed-off-by: Steffen Jaeckel <[email protected]>
1 parent a3665e8 commit bafc708

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: Unlicense
12
#
23
# LibTomMath, a free open source portable number theoretic multiple-precision
34
# integer (MPI) library written entirely in C.

helper.pl

+4-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,10 @@ sub patch_file {
223223

224224
sub make_sources_cmake {
225225
my @list = @_;
226-
my $output = "set(SOURCES\n";
226+
my $output = "# SPDX-License-Identifier: Unlicense
227+
# Autogenerated File! Do not edit.
228+
229+
set(SOURCES\n";
227230
foreach my $obj (sort @list) {
228231
$output .= $obj . "\n";
229232
}

sources.cmake

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-License-Identifier: Unlicense
2+
# Autogenerated File! Do not edit.
3+
14
set(SOURCES
25
mp_2expt.c
36
mp_abs.c

0 commit comments

Comments
 (0)