bkaradzic / GENie

GENie - Project generator tool
Other
899 stars 167 forks source link

About the cmdline --platform option #449

Open KageKirin opened 5 years ago

KageKirin commented 5 years ago

Hi,

I have a question about the command line --platform option: In cmdline.lua, the options are defined as below, and if passed, the argument value is inside the active terms for matching against configuration specializations.

My questions:

    newoption
    {
        trigger     = "platform",
        value       = "VALUE",
        description = "Add target architecture (if supported by action)",
        allowed = {
            { "x32",         "32-bit" },
            { "x64",         "64-bit" },
            { "universal",   "Mac OS X Universal, 32- and 64-bit" },
            { "universal32", "Mac OS X Universal, 32-bit only" },
            { "universal64", "Mac OS X Universal, 64-bit only" },
            { "ps3",         "Playstation 3" },
            { "orbis",       "Playstation 4" },
            { "xbox360",     "Xbox 360" },
            { "durango",     "Xbox One" },
            { "ARM",         "ARM" },
            { "PowerPC",     "PowerPC" },
        }
    }

Cheers.

KageKirin commented 5 years ago

This is related to #450.

I think it would be better to renamed TegraAndroid to Android and expose it to the --platform cli option.

What do you think?