-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for VS 2022. * build: Temporarily modify CI workflows. * Make Tundra check for 64-bit install path. * Oops, this isn't GMod Lua... * Revert tundra push workflow change.
- Loading branch information
Showing
4 changed files
with
36 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Microsoft Visual Studio 2022 Solution/Project file generation | ||
|
||
module(..., package.seeall) | ||
|
||
local msvc_common = require "tundra.ide.msvc-common" | ||
|
||
msvc_common.setup("12.00", "2022") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
module(..., package.seeall) | ||
|
||
local vscommon = require "tundra.tools.msvc-vscommon-next" | ||
|
||
function apply(env, options) | ||
vscommon.apply_msvc_visual_studio("2022", env, options) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters