README.txt 835 B

12345678910111213
  1. Download SDL 2.0 source code from http://libsdl.org/ and extract here.
  2. Special notes for Windows store app versions (under winrt directory):
  3. To make the screen shot & mp3 functions work properly, you need to modify the SDL's project files within
  4. the 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 be done
  6. 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. Also, library search path for "sdlpal.common.lib"
  9. should be appended to the linker's command line. This work can also be done through the Visual Studio's GUI.