https://github.com/Kitware/CMake
Raw File
Tip revision: 80bcbe2d85232d748e31fb4de1016af60788505d authored by Brad King on 15 April 2016, 12:48:23 UTC
CMake 3.5.2
Tip revision: 80bcbe2
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