mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 03:11:08 -06:00
Check the complete include path for being a system include, not the derived framework search path. The code for Ninja and Makefile generators does exactly the same. Fixes: #23011
9 lines
77 B
C
9 lines
77 B
C
#include <Example/Example.h>
|
|
|
|
int foo(void);
|
|
|
|
int foo(void)
|
|
{
|
|
return 42;
|
|
}
|