Skip to content

Commit

Permalink
More doc on env var for PowerShell (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
ldm0 authored Mar 17, 2024
1 parent 92d9d7d commit 5a5994f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@ Setup the environment:
```bash
# *nix (the path of the folder named after the triplet may change)
export FFMPEG_PKG_CONFIG_PATH=${PWD}/target/vcpkg/installed/x64-linux/lib/pkgconfig
# Windows
# Windows(CMD)
set FFMPEG_PKG_CONFIG_PATH=%CD%\target\vcpkg\installed\x64-windows-static-md\lib\pkgconfig
# Windows(PowerShell)
$env:FFMPEG_PKG_CONFIG_PATH="$(($PWD).path)\target\vcpkg\installed\x64-windows-static-md\lib\pkgconfig"
```
Run the vcpkg build:
Expand Down

0 comments on commit 5a5994f

Please sign in to comment.