Browse Source

Animation: fix linking to the library on MSYS2/Clang.

pull/417/head
William JCM 6 years ago
parent
commit
15812034c5
  1. 2
      src/Magnum/Animation/Player.h

2
src/Magnum/Animation/Player.h

@ -876,7 +876,7 @@ template<class T, class K> template<class V, class R, class Callback> Player<T,
}
#endif
#if defined(CORRADE_TARGET_WINDOWS) && !defined(__MINGW32__)
#if defined(CORRADE_TARGET_WINDOWS) && !(defined(CORRADE_TARGET_MINGW) && !defined(CORRADE_TARGET_CLANG))
extern template class MAGNUM_EXPORT Player<Float, Float>;
extern template class MAGNUM_EXPORT Player<std::chrono::nanoseconds, Float>;
#endif

Loading…
Cancel
Save