mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
When multiple source files in a single target have the same name, we
already set `ObjectFileName` explicitly to avoid a `.obj` collision. For
C++ module sources, set `Module{Output,Dependencies}File` to avoid
`.ifc` and `.module.json` collisions.
Fixes: #25038
6 lines
58 B
C++
6 lines
58 B
C++
export module b.same;
|
|
export int b_same()
|
|
{
|
|
return 0;
|
|
}
|