https://github.com/Kitware/CMake
Raw File
Tip revision: b3de2a8e6451c9138948c23a974740823ade8263 authored by Brad King on 01 June 2015, 13:39:26 UTC
CMake 3.2.3
Tip revision: b3de2a8
foo.cxx
#include <stdio.h>
#if defined(_WIN32) && defined(foo_EXPORTS)
#  define CM_TEST_LIB_EXPORT  __declspec( dllexport )
#else
#  define CM_TEST_LIB_EXPORT
#endif
CM_TEST_LIB_EXPORT void foo()
{
  printf("foo\n");
}
back to top