I'm trying to generate solution and project files for a static library in universal windows platform using cmake. I gave parameters as specified in the other thread here
But it generated project files with incorrect configs (TargetPlatformVersion = 8.1 and WindowsStoreAppSupport=No). Instead the values should be like TargetPlatformVersion = 10.0.10586.0 or 10.0.10240.0 and WindowsStoreAppSupport = Yes.
I have given parameters as CMAKE_SYSTEM_NAME = WindowsStore
and CMAKE_SYSTEM_VERSION = 10.0
and selected the generator to "Visual Studio 14 2015".
Is Universal Windows Platform supported by CMake? If yes, then how do I generate the project files supporting UWP?