42 lines
996 B
Lua
42 lines
996 B
Lua
local p = premake
|
|
|
|
require('vstudio')
|
|
|
|
newoption {
|
|
trigger = "enable_prereleases",
|
|
description = "Enable prerelease versions of Visual Studio"
|
|
}
|
|
|
|
newaction {
|
|
-- Metadata
|
|
trigger = "vscode",
|
|
shortname = "VS Code",
|
|
description = "Generate Visual Studio Code Projects",
|
|
|
|
-- Capabilities
|
|
valid_kinds = { "ConsoleApp", "WindowedApp", "Makefile", "SharedLib", "StaticLib", "Utility" },
|
|
valid_languages = { "C", "C++", "C#" },
|
|
valid_tools = { "gcc", "clang", "msc" },
|
|
|
|
onStart = function()
|
|
if _TARGET_OS == "windows" then
|
|
os.execute(_PREMAKE_COMMAND .. " vs2022")
|
|
else
|
|
os.execute(_PREMAKE_COMMAND .. " gmake2")
|
|
end
|
|
end,
|
|
|
|
-- Workspace Generation
|
|
onWorkspace = function(wks)
|
|
p.modules.vscode.generateWorkspace(wks)
|
|
end,
|
|
|
|
-- Project Generation
|
|
onProject = function(prj)
|
|
p.modules.vscode.generateProject(prj)
|
|
end
|
|
}
|
|
|
|
return function(cfg)
|
|
return _ACTION == "vscode"
|
|
end |