https://github.com/Kitware/CMake
Raw File
Tip revision: 4a6fe0290880bd56dd5141f06c9fa2b9e310162e authored by Brad King on 13 August 2015, 13:17:06 UTC
CMake 3.3.1
Tip revision: 4a6fe02
pcShared.h
#ifndef pcShared_h
#define pcShared_h

#ifdef _WIN32
# ifdef pcShared_EXPORTS
#  define PC_EXPORT __declspec(dllexport)
# else
#  define PC_EXPORT __declspec(dllimport)
# endif
#else
# define PC_EXPORT
#endif

PC_EXPORT const char* pcShared(void);

#endif
back to top