https://github.com/Kitware/CMake
Raw File
Tip revision: 0ad0c37206fce114c4e4c31f5270b53e181ab3c2 authored by Robert Maynard on 15 May 2013, 15:17:10 UTC
CMake 2.8.11
Tip revision: 0ad0c37
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