1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 02:08:27 +08:00
Files
CMake/Tests/IncludeDirectories/SystemIncludeDirectories/imported_consumer.cpp
Brad King b094324948 Tests/IncludeDirectories: Include system headers via angle brackets
This is typically how projects include them, and cl's `-external:{I,W}`
flags suppress warnings only when included through angle brackets.
2021-06-17 14:02:52 -04:00

8 lines
62 B
C++

#include <systemlib.h>
int main()
{
return systemlib();
}