
Single-config generators already support unity builds with per-config sources because they compute sources using `CMAKE_BUILD_TYPE` as the configuration. Each original source is either included in the unity build source, or not. Teach multi-config generators to compute the list of sources for inclusion in unity builds using all configurations. Previously they only used the empty string as the configuration. Each original source may be included in some configurations, but not others. Use preprocessor conditions to guard their inclusion when necessary. Fixes: #22892
10 lines
188 B
C
10 lines
188 B
C
#ifndef CFG_DEBUG
|
|
# error "per_config_c_debug built without CFG_DEBUG"
|
|
#endif
|
|
#ifdef CFG_OTHER
|
|
# error "per_config_c_debug built with CFG_OTHER"
|
|
#endif
|
|
void per_config_c_debug(void)
|
|
{
|
|
}
|