cmake/Tests/MacRuntimePath/A/framework.h

18 lines
285 B
C
Raw Normal View History

2013-11-03 12:27:13 +02:00
#ifndef framework_h
#define framework_h
#ifdef WIN32
2018-08-09 18:06:22 +02:00
# ifdef framework_EXPORTS
# define FRAMEWORK_EXPORT __declspec(dllexport)
# else
# define FRAMEWORK_EXPORT __declspec(dllimport)
# endif
2013-11-03 12:27:13 +02:00
#else
2018-08-09 18:06:22 +02:00
# define FRAMEWORK_EXPORT
2013-11-03 12:27:13 +02:00
#endif
void FRAMEWORK_EXPORT framework();
#endif