1

I've read Compiling FreeType to DLL (as opposed to static library). But in my ftoption.h isn't FT_BASE macro. There are only FT_EXPORT and FT_EXPORT_DEF. What values must they have?

Community
  • 1
  • 1
patrykbajos
  • 384
  • 3
  • 17

1 Answers1

2

It says right there in comments under the answer you're citing.

There should be a third #define in ftoption.h if you want to export everything: #define FT_EXPORT_DEF(x) __declspec(dllexport) x. http://github.com/Robmaister/SharpFont/issues/24Robert Rouhani Jul 15 '13 at 20:32

Compiling FreeType to DLL (as opposed to static library)

It would have been nice if Robert had edited this information into the answer. If you find that it works for you, you could consider doing so yourself so that others may benefit.

Community
  • 1
  • 1
Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055