-
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.
One thing of interest is that when VS 2019 produces a solution (.sln) file, it gives it this version heading: Microsoft Visual Studio Solution File, Format Version 12.00 The other IDE generation files such as msvc141.lua emit higher numbers than 12 (eg msvc141.lua emits 14.0). VS 2019 refuses to open .sln files with numbers higher than 14.00, but it seems unlikely that the versions between 12 to 14 make any difference. I've made the 2019 version 12.00, for consistency with the native values produced by the IDE, but I'm not sure if this is correct.
- Loading branch information
Showing
3 changed files
with
27 additions
and
6 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 2019 Solution/Project file generation | ||
|
||
module(..., package.seeall) | ||
|
||
local msvc_common = require "tundra.ide.msvc-common" | ||
|
||
msvc_common.setup("12.00", "2019") |
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("2019", env, options) | ||
end |