Files
CMake/Tests/ExportImport/Import/A/imp_testInterfaceInclude1.c
Brad King 14d98bcfe6 export: Propagate IMPORTED_NO_SYSTEM target property to consumers
Enabling `IMPORTED_NO_SYSTEM` on a target built within the project has
no effect on the build system, but it is still a useful way to set the
property on imported targets generated by `install(EXPORT)` and
`export()`.

Issue: #17364
2021-10-15 13:04:19 -04:00

7 lines
87 B
C

#include "testInterfaceInclude.h"
int imp_testInterfaceInclude1(void)
{
return 0;
}