cmake/Tests/Jump/Library/Shared/jumpShared.cxx

11 lines
139 B
C++
Raw Normal View History

#ifdef _WIN32
2018-08-09 18:06:22 +02:00
# define JUMP_EXPORT __declspec(dllexport)
#else
2018-08-09 18:06:22 +02:00
# define JUMP_EXPORT
#endif
2016-07-09 11:21:54 +02:00
JUMP_EXPORT int jumpShared()
{
return 0;
}