Revision be36bfd65d53962c7ba975382bd911e0857f6a33 authored by Domen Vrankar on 10 February 2015, 22:03:06 UTC, committed by Brad King on 11 February 2015, 14:56:27 UTC
The file(GLOB_RECURSE) call added by commit 3ec02547 (CPackRPM: Allow
multiple path relocation prefixes for one package, 2015-01-21) should
not follow directory symlinks, so make sure CMP0009 is set to NEW.
1 parent 3d99355
Raw File
libcxx2.h
#ifdef _WIN32
#  ifdef testcxx2_EXPORTS
#    define CM_TEST_LIB_EXPORT  __declspec( dllexport )
#  else
#    define CM_TEST_LIB_EXPORT  __declspec( dllimport )
#  endif
#else
#  define CM_TEST_LIB_EXPORT
#endif

class CM_TEST_LIB_EXPORT LibCxx2Class
{
public:
  static float Method();
};
back to top