-
-
Notifications
You must be signed in to change notification settings - Fork 616
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented VS API for toggling of C++20 modules and STL module build (…
- Loading branch information
1 parent
2f6617c
commit b94b9d7
Showing
7 changed files
with
138 additions
and
0 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
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
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,24 @@ | ||
Sets whether or not the compiler should build STL modules. | ||
|
||
```lua | ||
buildstlmodules("value") | ||
``` | ||
|
||
### Parameters ### | ||
|
||
`value` is one of: | ||
|
||
- `On` | ||
- `Off` | ||
|
||
### Applies To ### | ||
|
||
The `config` scope. | ||
|
||
### Availability ### | ||
|
||
Premake 5.0.0 beta 3 or later for Visual Studio 2022 and later. | ||
|
||
### See Also ### | ||
|
||
* [enablemodules](enablemodules.md) |
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,20 @@ | ||
Sets whether or not the compiler should enable C++20 modules. | ||
|
||
```lua | ||
enablemodules("value") | ||
``` | ||
|
||
### Parameters ### | ||
|
||
`value` is one of: | ||
|
||
- `On` | ||
- `Off` | ||
|
||
### Applies To ### | ||
|
||
The `config` scope. | ||
|
||
### Availability ### | ||
|
||
Premake 5.0.0 beta 3 or later for Visual Studio 2019 and later. |
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