Merge branch 'master' into flakey5/add-usestandardpreprocessor

This commit is contained in:
Nick Clark 2022-10-06 21:55:42 -04:00 committed by GitHub
commit 2e0410a03f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ rule "MyCustomRule"
buildmessage 'Compiling %(Filename) with MyCustomCC'
buildcommands 'MyCustomCC.exe -c "%(FullPath)" -o "%(IntDir)/%(Filename).obj"'
buildoutputs '%(IntDir)/%(Filename).obj"'
buildoutputs '%(IntDir)/%(Filename).obj'
```
This rule will pass all files in project with the ".xyz" file extension through the specified build command. At export time, the files `MyCustomRule.props`, `MyCustomRule.targets`, and `MyCustomRule.xml` will be generated in the sample directory. Like workspaces and projects, this can be changed with [`location`](location.md) and [`filename`](filename.md).
@ -45,7 +45,7 @@ rule "MyCustomRule"
propertydefinition {
name = "StripDebugInfo",
ind = "boole
kind = "boolean",
display = "Strip Debug Info",
description = "Remove debug information from the generated object files"
value = false,