You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
is it necessary to pass this flag? i.e. I've seen genie's makefile using this option, but I've been making my projects for 4+ without it
the flag seems to be targeted at being matched against the platforms defined in the main genie file (i.e. the workspace settings).
hence the actual main question: TegraAndroid is a valid enum value for platforms, but it's not allowed by the command line options.
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.
The text was updated successfully, but these errors were encountered:
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 againstconfiguration
specializations.My questions:
platforms
defined in the main genie file (i.e. the workspace settings).TegraAndroid
is a valid enum value forplatforms
, but it's not allowed by the command line options.Cheers.
The text was updated successfully, but these errors were encountered: