Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding documentation for module options #1745

Merged
merged 1 commit into from
Nov 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions website/docs/compileas.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ compileas "value"
* `C++` - Compile as a C++ source file.
* `Objective-C` - Compile as an Objective-C source file.
* `Objective-C++` - Compile as an Objective-C++ source file.
* `Module` - Needs documentation
* `ModulePartition` - Needs documentation
* `HeaderUnit` - Needs documentation
* `Module` - Compile as a C++20 module interface unit.
* `ModulePartition` - Compile as a C++20 module interface partition.
* `HeaderUnit` - Compile as a C++20 header unit.
hannes-harnisch marked this conversation as resolved.
Show resolved Hide resolved

### Applies To ###

The `workspace`, `project` or `file` scope.

### Availability ###

Premake 5.0.0 alpha 13 or later.
Premake 5.0.0 alpha 13 or later. The options **Module**, **ModulePartition** and **HeaderUnit** are only available in Premake 5.0-beta1 or later and only implemented for Visual Studio 2019+.

### Examples ###

Expand Down