Initial community commit
This commit is contained in:
33
Src/external_dependencies/openmpt-trunk/include/premake/website/docs/startproject.md
vendored
Normal file
33
Src/external_dependencies/openmpt-trunk/include/premake/website/docs/startproject.md
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
Specify the startup project for a workspace.
|
||||
|
||||
```lua
|
||||
startproject "name"
|
||||
```
|
||||
|
||||
Startup projects are currently only supported by Visual Studio.
|
||||
|
||||
### Parameters ###
|
||||
|
||||
`name` is the name of the startup project. This should match the name provided in the call to project(), where the project is defined.
|
||||
|
||||
### Applies To ###
|
||||
|
||||
Workspaces.
|
||||
|
||||
### Availability ###
|
||||
|
||||
5.0 or later.
|
||||
|
||||
### Examples ###
|
||||
|
||||
```lua
|
||||
workspace "MyWorkspace"
|
||||
configurations { "Debug", "Release" }
|
||||
startproject "MyProject2"
|
||||
|
||||
project "MyProject1"
|
||||
-- define project 1 here
|
||||
|
||||
project "MyProject2"
|
||||
-- define project 2 here
|
||||
```
|
||||
Reference in New Issue
Block a user