mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 10:50:16 -06:00
Populate `CMAKE_Swift_IMPLICIT_INCLUDE_DIRECTORIES` with the macOS SDK's include directory so that we filter such implicit directories out of Swift targets. Fixes: #19845
7 lines
72 B
C++
7 lines
72 B
C++
#include <cmath>
|
|
|
|
bool foo(double arg)
|
|
{
|
|
return std::isfinite(arg);
|
|
}
|