Files
CMake/Tests/RunCMake/CXXModules/examples/vs-without-flags/module.cxx
Ben Boeckel 6c9614cbf4 Tests/CXXModules: add a test case for VS generation without flags
Previously, the `ScanSourceForModuleDependencies` flag was not added to
the VS project if "nothing" prompted custom flags.

See: #25519
2024-01-06 11:18:57 -05:00

7 lines
51 B
C++

export module mod;
export int f()
{
return 0;
}