CMake/Tests/ExportImport/Import/A/test_system.cpp
Stephen Kelly a63fcbcb9f Always consider includes from IMPORTED targets to be SYSTEM.
Introduce a target property to control this behavior variable
to set the default value for the target property.

This does not affect try_compile runs.
2013-09-24 20:00:31 +02:00

10 lines
81 B
C++

#include "systemlib.h"
int main()
{
SystemStruct s;
(void)s;
return 0;
}