├── .cmake-format ├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── scorecard.yml ├── .gitignore ├── CHANGELOG.rst ├── CMakeLists.txt ├── LICENSE ├── LICENSES ├── CC-BY-4.0.txt ├── CC0-1.0.txt └── MIT.txt ├── README.rst ├── SECURITY.md ├── cmake ├── git_version.cmake ├── git_version.h.in ├── git_version.sh.in ├── sbom.cmake └── version.cmake ├── dist ├── .gitignore ├── common │ └── requirements.txt ├── macos │ ├── .gitignore │ ├── bootstrap.sh │ ├── build.sh │ └── build.sh.license ├── ubuntu │ ├── .gitignore │ ├── bootstrap.sh │ └── build.sh └── win32 │ ├── .gitignore │ └── build.cmd ├── example ├── .gitignore ├── CMakeLists.txt ├── LICENSES │ └── CC0-1.0.txt ├── README.rst ├── example.cpp └── output │ └── sbom-1.3.0.spdx └── test ├── C.cmake ├── CMakeLists.txt ├── CXX.cmake ├── C_CXX.cmake ├── dir.cmake ├── env_version.cmake ├── external.cmake ├── file.cmake ├── full_doc.cmake ├── input_doc.cmake ├── input_doc.spdx.in ├── minimal.cmake ├── minimal2.cmake ├── package.cmake ├── target.cmake └── version.cmake /.cmake-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/.cmake-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmake/git_version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/cmake/git_version.cmake -------------------------------------------------------------------------------- /cmake/git_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/cmake/git_version.h.in -------------------------------------------------------------------------------- /cmake/git_version.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/cmake/git_version.sh.in -------------------------------------------------------------------------------- /cmake/sbom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/cmake/sbom.cmake -------------------------------------------------------------------------------- /cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/cmake/version.cmake -------------------------------------------------------------------------------- /dist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/.gitignore -------------------------------------------------------------------------------- /dist/common/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/common/requirements.txt -------------------------------------------------------------------------------- /dist/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/macos/.gitignore -------------------------------------------------------------------------------- /dist/macos/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/macos/bootstrap.sh -------------------------------------------------------------------------------- /dist/macos/build.sh: -------------------------------------------------------------------------------- 1 | ../ubuntu/build.sh -------------------------------------------------------------------------------- /dist/macos/build.sh.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/macos/build.sh.license -------------------------------------------------------------------------------- /dist/ubuntu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/ubuntu/.gitignore -------------------------------------------------------------------------------- /dist/ubuntu/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/ubuntu/bootstrap.sh -------------------------------------------------------------------------------- /dist/ubuntu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/ubuntu/build.sh -------------------------------------------------------------------------------- /dist/win32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/win32/.gitignore -------------------------------------------------------------------------------- /dist/win32/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/dist/win32/build.cmd -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/example/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /example/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/example/README.rst -------------------------------------------------------------------------------- /example/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/example/example.cpp -------------------------------------------------------------------------------- /example/output/sbom-1.3.0.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/example/output/sbom-1.3.0.spdx -------------------------------------------------------------------------------- /test/C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/C.cmake -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/CXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/CXX.cmake -------------------------------------------------------------------------------- /test/C_CXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/C_CXX.cmake -------------------------------------------------------------------------------- /test/dir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/dir.cmake -------------------------------------------------------------------------------- /test/env_version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/env_version.cmake -------------------------------------------------------------------------------- /test/external.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/external.cmake -------------------------------------------------------------------------------- /test/file.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/file.cmake -------------------------------------------------------------------------------- /test/full_doc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/full_doc.cmake -------------------------------------------------------------------------------- /test/input_doc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/input_doc.cmake -------------------------------------------------------------------------------- /test/input_doc.spdx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/input_doc.spdx.in -------------------------------------------------------------------------------- /test/minimal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/minimal.cmake -------------------------------------------------------------------------------- /test/minimal2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/minimal2.cmake -------------------------------------------------------------------------------- /test/package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/package.cmake -------------------------------------------------------------------------------- /test/target.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/target.cmake -------------------------------------------------------------------------------- /test/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEMCON/cmake-sbom/HEAD/test/version.cmake --------------------------------------------------------------------------------