https://github.com/Kitware/CMake
Raw File
Tip revision: 19ff734e76a35d59eb0f973197cadb1c271c766c authored by Brad King on 13 January 2021, 12:58:18 UTC
CMake 3.19.3
Tip revision: 19ff734
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