README.txt 692 B

123456789101112
  1. Download SDL 2.0 source code from http://libsdl.org/ and extract here.
  2. Special notes for Windows RT versions:
  3. To make the screen shot function work properly, you need to modify the project files within the
  4. VisualC-WinRT directory (including SDL-WinPhone81.vcxproj, SDL-WinRT81.vcxproj & SDL-UWP.vcxproj)
  5. by manually place the library file 'sdlpal.common.lib' before the 'msvcrt[d].lib'. This work can
  6. be done by adding the following LINK options:
  7. "sdlpal.common.lib" "vccorlib[d].lib" "msvcrt[d].lib" /NODEFAULTLIB:"vccorlib[d].lib" /NODEFAULTLIB:"msvcrt[d].lib"
  8. Note the the optional 'd' postfix is used only in debug builds. This work can also be done through
  9. the Visual Studio's GUI.