mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-20 21:50:53 -06:00
The "all" target defined for a subdirectory (e.g. `cd sub; make` or `ninja sub/all`) should not include the "all" targets from nested subdirectories (e.g. `sub/sub`) that are marked as `EXCLUDE_FROM_ALL`. Fix this and add a test case. Issue: #19753 Co-Author: Sebastian Holtermann <sebholt@xwmw.org>
5 lines
29 B
C++
5 lines
29 B
C++
int subsub()
|
|
{
|
|
return 0;
|
|
}
|