Files
Matthew Woehlke ed6e9abf98 CPS, SBOM: Fix default output destination
- Change default CPS install path on Windows from `cps` to `cps/<name>`,
per community recommendation that only paths containing the package name
should be considered as "officially" supported search locations (see
https://github.com/cps-org/cps/issues/79#issuecomment-2831102822).

- Change `export` to write to a subdirectory that allows the build
tree to be used as a search root.

- Change SBOM destinations to be consistent with the preceding.

Issue: #27785
2026-05-19 13:31:56 -04:00

10 lines
334 B
CMake

include(${CMAKE_CURRENT_LIST_DIR}/Assertions.cmake)
set(out_dir "${RunCMake_BINARY_DIR}/LowerCaseFile-build")
file(READ "${out_dir}/cps/lowercase/lowercase.cps" content)
expect_value("${content}" "LowerCase" "name")
file(READ "${out_dir}/cps/PreserveCase/PreserveCase.cps" content)
expect_value("${content}" "PreserveCase" "name")