Patch #2832852: Fix descriptions in cmd help (Sebastian Schuberth)
This commit is contained in:
parent
7b6c8fdd9a
commit
fa96dd946c
@ -8,7 +8,7 @@
|
||||
newaction {
|
||||
trigger = "codeblocks",
|
||||
shortname = "Code::Blocks",
|
||||
description = "Code::Blocks Studio",
|
||||
description = "Generate Code::Blocks project files",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
newaction {
|
||||
trigger = "codelite",
|
||||
shortname = "CodeLite",
|
||||
description = "CodeLite",
|
||||
description = "Generate CodeLite project files",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
|
||||
|
@ -104,7 +104,7 @@
|
||||
newaction {
|
||||
trigger = "gmake",
|
||||
shortname = "GNU Make",
|
||||
description = "GNU makefiles for POSIX, MinGW, and Cygwin",
|
||||
description = "Generate GNU makefiles for POSIX, MinGW, and Cygwin",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
|
||||
|
@ -309,7 +309,7 @@
|
||||
newaction {
|
||||
trigger = "vs2002",
|
||||
shortname = "Visual Studio 2002",
|
||||
description = "Microsoft Visual Studio 2002",
|
||||
description = "Generate Microsoft Visual Studio 2002 project files",
|
||||
os = "windows",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
@ -342,7 +342,7 @@
|
||||
newaction {
|
||||
trigger = "vs2003",
|
||||
shortname = "Visual Studio 2003",
|
||||
description = "Microsoft Visual Studio 2003",
|
||||
description = "Generate Microsoft Visual Studio 2003 project files",
|
||||
os = "windows",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
@ -375,7 +375,7 @@
|
||||
newaction {
|
||||
trigger = "vs2005",
|
||||
shortname = "Visual Studio 2005",
|
||||
description = "Microsoft Visual Studio 2005 (SharpDevelop, MonoDevelop)",
|
||||
description = "Generate Microsoft Visual Studio 2005 project files",
|
||||
os = "windows",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
@ -408,7 +408,7 @@
|
||||
newaction {
|
||||
trigger = "vs2008",
|
||||
shortname = "Visual Studio 2008",
|
||||
description = "Microsoft Visual Studio 2008",
|
||||
description = "Generate Microsoft Visual Studio 2008 project files",
|
||||
os = "windows",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
|
@ -10,7 +10,7 @@
|
||||
{
|
||||
trigger = "xcode3",
|
||||
shortname = "Xcode 3",
|
||||
description = "Apple Xcode 3 (experimental)",
|
||||
description = "Generate Apple Xcode 3 project files (experimental)",
|
||||
os = "macosx",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "SharedLib", "StaticLib" },
|
||||
|
@ -143,6 +143,9 @@
|
||||
--
|
||||
|
||||
function premake.action.supports(action, feature)
|
||||
if not action then
|
||||
return false
|
||||
end
|
||||
if action.valid_languages then
|
||||
if table.contains(action.valid_languages, feature) then
|
||||
return true
|
||||
|
Reference in New Issue
Block a user