Skip to content

Commit 42626a4

Browse files
authored
Merge pull request #1 from sodgeit/refactor/project-simplification-and-workflow-optimisations
Refactor/project simplification and workflow optimisations
2 parents f95d9f9 + a67dadc commit 42626a4

38 files changed

+717
-1812
lines changed

.cmake-format

-76
This file was deleted.

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44

55
*.swp
66
*.swo
7+
build
8+
out

CMakeLists.txt

+2-7
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,11 @@
55
# This file only performs a few sanity checks on the repo. No building is required to use the
66
# cmake/*.cmake files.
77

8-
cmake_minimum_required(VERSION 3.5)
9-
cmake_policy(VERSION 3.5)
8+
cmake_minimum_required(VERSION 3.14)
109

1110
project(cmake-sbom)
1211

13-
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
14-
15-
include(sbom)
16-
17-
reuse_lint()
12+
include(cmake/sbom.cmake)
1813

1914
add_subdirectory(example)
2015
add_subdirectory(test)

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

33
Copyright (c) 2023-2024 Jochem Rutgers
4+
Copyright (c) 2024 sodge IT GmbH
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
67

LICENSES/CC-BY-4.0.txt

-156
This file was deleted.

LICENSES/CC0-1.0.txt

-121
This file was deleted.

LICENSES/MIT.txt

-9
This file was deleted.

0 commit comments

Comments
 (0)