mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-16 14:08:35 +08:00

Since commit b1c3ae33ea
(cmTarget: Short-circuit language computation if
context independent., 2014-04-09, v3.1.0-rc1~669^2~1) we've tried to
avoid repeating computation of the list of sources for a target for
every configuration in the case that a per-config source (or object
library) contributes zero sources. However, it is possible that an
entry contributes zero sources in the first configuration processed but
at least one source in other configurations.
Fixes: #25400
9 lines
83 B
C++
9 lines
83 B
C++
#include "iface.h"
|
|
int main()
|
|
{
|
|
#ifdef CFG_ONE
|
|
iface_src();
|
|
#endif
|
|
return 0;
|
|
}
|