Skip to content

Commit 236d2f1

Browse files
authored
Merge pull request #3929 from corob-msft/docs/corob/cpp-docs-3535
Address cpp-docs 3535: Add version info to NMAKE macro functions
2 parents 3fbed45 + 5734527 commit 236d2f1

8 files changed

Lines changed: 16 additions & 0 deletions

docs/build/reference/nmake-function-abspath.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ A [list](using-an-nmake-macro.md#function-list-syntax) with each of the items fr
2828

2929
`abspath` supports extended-length paths, either by using the `\\?\` prefix, or when long paths are enabled. For more information about long paths, see [Maximum Path Length Limitation](/windows/win32/fileio/maximum-file-path-limitation).
3030

31+
This macro function is available starting in Visual Studio 2022, in NMAKE version 14.30 or later.
32+
3133
## Example
3234

3335
```makefile

docs/build/reference/nmake-function-basename.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ A [list](using-an-nmake-macro.md#function-list-syntax) with each of the items fr
3030

3131
The `basename` function is equivalent to using the [`R` modifier in a filename macro](special-nmake-macros.md#filename-macros).
3232

33+
This macro function is available starting in Visual Studio 2022, in NMAKE version 14.30 or later.
34+
3335
## Example
3436

3537
```makefile

docs/build/reference/nmake-function-filter.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ A list of all of the items in *`input`* that match at least one pattern in *`fil
3232

3333
`filteri` is the case-insensitive version of `filter`.
3434

35+
This macro function is available starting in Visual Studio 2022, in NMAKE version 14.30 or later.
36+
3537
## Example
3638

3739
```makefile

docs/build/reference/nmake-function-filterout.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ A [list](using-an-nmake-macro.md#function-list-syntax) of all of the items in *`
3232

3333
`filterouti` is the case-insensitive version of `filterout`.
3434

35+
This macro function is available starting in Visual Studio 2022, in NMAKE version 14.30 or later.
36+
3537
## Example
3638

3739
```makefile

docs/build/reference/nmake-function-findstring.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ If *`searchFor`* is found within *`input`*, then the function returns *`searchFo
3232

3333
`findstringi` is the case-insensitive version of `findstring`.
3434

35+
This macro function is available starting in Visual Studio 2022, in NMAKE version 14.30 or later.
36+
3537
## Example
3638

3739
```makefile

docs/build/reference/nmake-function-patsubst.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ Returns *`input`*, but each item that matches *`pattern`* is replaced by *`repla
3535

3636
`patsubsti` is the case-insensitive version of `patsubst`.
3737

38+
This macro function is available starting in Visual Studio 2022, in NMAKE version 14.30 or later.
39+
3840
## Example
3941

4042
```makefile

docs/build/reference/nmake-function-strip.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ A [list](using-an-nmake-macro.md#function-list-syntax) of the exact same items a
2828

2929
NMAKE outputs a [list](using-an-nmake-macro.md#function-list-syntax) that has a single space between each item and no leading or trailing whitespace. `strip` doesn't change any item within a list, but it does ensure that the returned list is in this canonical form. The canonical form can be useful for later operations that operate on strings instead of lists.
3030

31+
This macro function is available starting in Visual Studio 2022, in NMAKE version 14.30 or later.
32+
3133
## Example
3234

3335
```makefile

docs/build/reference/nmake-function-subst.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ Returns *`input`*, but all instances of *`oldString`* are replaced by *`newStrin
3535

3636
`substi` is the case-insensitive version of `subst`.
3737

38+
This macro function is available starting in Visual Studio 2022, in NMAKE version 14.30 or later.
39+
3840
## Example
3941

4042
```makefile

0 commit comments

Comments
 (0)