mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 11:49:55 -06:00
In commit 197cb419d1 (add_custom_command: Add CODEGEN support,
2024-05-27, v3.31.0-rc1~394^2) we accidentally left out the global
`codegen` target's dependencies on the per-directory `codegen` targets.
Add them for parity with the `all` target.
Fixes: #26517
38 lines
1.0 KiB
CMake
38 lines
1.0 KiB
CMake
include(RunCMake)
|
|
|
|
function(run_codegen case)
|
|
set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/${case}-build)
|
|
|
|
run_cmake(${case})
|
|
|
|
set(RunCMake_TEST_NO_CLEAN 1)
|
|
|
|
run_cmake_command(${case}-build ${CMAKE_COMMAND} --build . --target codegen --config Debug)
|
|
endfunction()
|
|
|
|
# Builds codegen target when there are no custom commands marked codegen
|
|
run_codegen("no-codegen")
|
|
|
|
# We don't want codegen to drive parts of the project that are EXCLUDE_FROM_ALL
|
|
run_codegen("exclude-from-all")
|
|
|
|
# Ensures codegen builds minimal build graphs
|
|
run_codegen("min-graph-1")
|
|
run_codegen("min-graph-2")
|
|
run_codegen("min-graph-3")
|
|
|
|
# Handle specific cases that can affect codegen
|
|
run_codegen("add-dependencies")
|
|
run_codegen("add-custom-command-depends")
|
|
run_codegen("byproducts")
|
|
|
|
# Error handling
|
|
run_cmake("implicit-depends")
|
|
run_cmake("implicit-depends-append-codegen")
|
|
run_cmake("append-implicit-depends")
|
|
run_cmake("no-output")
|
|
|
|
# Top-level codegen depends on that of subdirectories.
|
|
run_codegen(SubDir)
|
|
run_codegen(SubDirExcludeFromAll)
|