Premake extension which enables to build WindowsPhone projects for Visual Studio (vs2013 and vs2015 only!)
Simply add:
architecture "ARM"
or
architecture "ARM64"
to a C/C++ solution/project.
The output will be a C/C++ executable/library which targets WindowsPhone devices.
The contents of your premake5.lua file would be:
solution "MySolution"
configurations { "release", "debug" }
project "MyWpProject"
kind "ConsoleApp"
language "C++"
architecture "ARM"
exceptionhandling ("On")
files { "hello.cpp" }