You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Default | Specifies default debug format should be used by toolset. |
13
14
| c7 | Specifies that MSVC should store debuginfo in the objects rather than a separate .pdb file. |
15
+
| Dwarf | Needs documentation |
16
+
| SplitDwarf | Needs documetation |
14
17
15
18
**Note for Visual Studio Users:** Use [editandcontinue](editandcontinue.md) to control the `/Zi` and `/ZI` switches; see [this discussion](https://github.com/premake/premake-core/issues/1425) for more information.
Copy file name to clipboardExpand all lines: website/docs/editandcontinue.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ If no value is set for a configuration, the toolset's default setting (usually "
8
8
9
9
### Parameters ###
10
10
11
-
`value` is a boolean value, i.e. "On" or "Off".
11
+
`value` is a boolean value, i.e. "On" or "Off". Specifying "Default" will act the same as specifying no value, the toolset's default setting will be used.
Copy file name to clipboardExpand all lines: website/docs/exceptionhandling.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ exceptionhandling ("value")
14
14
| On | Turn on exceptions. |
15
15
| Off | Turn off exceptions. |
16
16
| SEH | Turn on exceptions and use [structured exception handling](https://msdn.microsoft.com/en-us/library/windows/desktop/ms680657(v=vs.85).aspx) when available. |
Copy file name to clipboardExpand all lines: website/docs/kind.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ kind ("kind")
18
18
| Utility | A configuration which contains only custom build rules. |
19
19
| None | A configuration which is not included in the build. Useful for projects containing only web pages, header files, or support documentation. |
20
20
| Packaging | A configuration type to create .androidproj files, which build the apk in an Android application under Visual Studio. _Note, this was previously `AndroidProj`._|
21
+
| SharedItems | A special configuration type which doesn't contain any build settings of its own, instead using the build settings of any projects that link it. |
21
22
22
23
23
24
### Applies To ###
@@ -28,6 +29,7 @@ Project configurations.
28
29
29
30
The **Makefile**, and **None** kinds are only available in Premake 5.0 and later, and are currently only supported for Visual Studio.
30
31
The **Utility** kind is only available for Visual Studio and gmake2, as well as very limited support in gmake.
32
+
The **SharedItems** kind is only available for Visual Studio 2013 and later.
0 commit comments