Skip to content

mikisch81/premake-wp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

premake-wp

Premake extension which enables to build WindowsPhone projects for Visual Studio (vs2013 and vs2015 only!)

Usage

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.

Example

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" }

About

WindowsPhone support for premake

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages