Stephen Kelly ee38062be8 IncludeDirectories: Respect SYSTEM flag when using CONFIG genex.
Update the Makefile and Ninja generators to use the config when
requesting the include flags.
2015-01-23 00:08:18 +01:00

15 lines
152 B
C

#ifndef CONFIG_IFACE_H
#define CONFIG_IFACE_H
#ifdef _WIN32
__declspec(dllexport)
#endif
int configUnusedFunc()
{
int unused;
return 0;
}
#endif