--HG-- rename : doc/README-SDL.md => README-SDL.txt rename : doc/README-android.md => docs/README-android.md rename : doc/README-cmake.md => docs/README-cmake.md rename : doc/README-directfb.md => docs/README-directfb.md rename : doc/README-dynapi.md => docs/README-dynapi.md rename : doc/README-gesture.md => docs/README-gesture.md rename : doc/README-hg.md => docs/README-hg.md rename : doc/README-ios.md => docs/README-ios.md rename : doc/README-linux.md => docs/README-linux.md rename : doc/README-macosx.md => docs/README-macosx.md rename : doc/README-nacl.md => docs/README-nacl.md rename : doc/README-pandora.md => docs/README-pandora.md rename : doc/README-platforms.md => docs/README-platforms.md rename : doc/README-porting.md => docs/README-porting.md rename : doc/README-psp.md => docs/README-psp.md rename : doc/README-raspberrypi.md => docs/README-raspberrypi.md rename : doc/README-touch.md => docs/README-touch.md rename : doc/README-wince.md => docs/README-wince.md rename : doc/README-windows.md => docs/README-windows.md rename : doc/README-winrt.md => docs/README-winrt.md rename : doc/README.md => docs/README.md rename : doc/doxyfile => docs/doxyfile
2.2 KiB
2.2 KiB
WinRT
SDL/WinRT layer allows SDL2-based applications to run on many of Microsoft's platforms that utilize the "Windows Runtime" (aka "WinRT") APIs. WinRT apps are currently always full-screen apps, run in what Microsoft calls their "Modern" environment (aka. "Metro"), and are distributed via Microsoft-run online stores. Some of the operating systems that support such apps include:
- Windows 8.x
- Windows RT 8.x (aka. Windows 8.x for ARM processors)
- Windows Phone 8.x
To note, WinRT applications that run on Windows 8.x and/or Windows RT are often called "Windows Store" apps.
Requirements
- Microsoft Visual C++ 2012 -- Free, "Express" editions may be used, so long as they include support for either "Windows Store" or "Windows Phone" apps. (NOTE: MSVC 2013 support is pending. 2012 projects may be converted to 2013 projects by MSVC, in the meantime.)
- A valid Microsoft account -- This requirement is not imposed by SDL, but rather by Microsoft's Visual C++ toolchain.
TODO
- Finish adding support for MSVC 2013, and "Universal" WinRT apps, which support Windows 8.1, Windows Phone 8.1, and in the future, Xbox One and Windows Desktop.
- Finish adding support for the SDL satellite libraries (SDL_image, SDL_mixer, SDL_ttf, etc.)
- Create templates for both MSVC 2012 and MSVC 2013, and have the corresponding VSIX packages either include pre-built copies of SDL, or reference binaries available via MSVC's NuGet servers
- Write setup instructions that use MSVC 201x templates
- Write setup instructions that don't use MSVC 201x templates, and use MSVC project-to-project references, rather than pre-built binaries
- Write a list of caveats found in SDL/WinRT, such as APIs that don't work due to platform restrictions, or things that need further work