mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 19:49:01 +08:00
6d5eba6a6d
* Add SKIP_CLEAN option to vcpkg_install_msbuild Also add vcpkg_clean_msbuild function to factor out clean logic and allow re-use in portfiles. * xalan-c: Correct header globbing * vcpkg_install_msbuild: SKIP_CLEAN documentation correction * [xalan-c] Add explicit check for localmsgindex header. [docs] Regenerate
21 lines
394 B
Markdown
21 lines
394 B
Markdown
# vcpkg_add_to_path
|
|
|
|
Add a directory to the PATH environment variable
|
|
|
|
## Usage
|
|
```cmake
|
|
vcpkg_add_to_path([PREPEND] <${PYTHON3_DIR}>)
|
|
```
|
|
|
|
## Parameters
|
|
### <positional>
|
|
The directory to add
|
|
|
|
### PREPEND
|
|
Prepends the directory.
|
|
|
|
The default is to append.
|
|
|
|
## Source
|
|
[scripts/cmake/vcpkg_add_to_path.cmake](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_add_to_path.cmake)
|