cmake/Tests/ExportImport/Export/testLibNoSONAME.c

11 lines
206 B
C
Raw Normal View History

2015-11-17 17:22:37 +01:00
#if defined(_WIN32) || defined(__CYGWIN__)
2016-07-09 11:21:54 +02:00
#define testLibNoSONAME_EXPORT __declspec(dllexport)
2015-11-17 17:22:37 +01:00
#else
2016-07-09 11:21:54 +02:00
#define testLibNoSONAME_EXPORT
2015-11-17 17:22:37 +01:00
#endif
2016-07-09 11:21:54 +02:00
testLibNoSONAME_EXPORT int testLibNoSONAME(void)
{
return 0;
}