mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
acb9511044
Teach `target_precompile_headers` to treat relative paths the same way as `target_sources`. Fixes: #19733
9 lines
101 B
C
9 lines
101 B
C
#include "bar.h"
|
|
#include "foo.h"
|
|
#include "foo2.h"
|
|
|
|
int main()
|
|
{
|
|
return foo() + foo2() + bar();
|
|
}
|