Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Echo a message on setting PKG_CONFIG_PATH #1172

Merged
merged 3 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions third-party/aom.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ cmake -S . -B build.libavif -G Ninja -DCMAKE_INSTALL_PREFIX="$(pwd)/dist" -DCMAK
ninja -C build.libavif
ninja -C build.libavif install
cd ..

echo ""
echo "----- NOTE ----"
echo "Please add the path to the pkg-config file to your PKG_CONFIG_PATH, like this:"
echo "export PKG_CONFIG_PATH=\$PKG_CONFIG_PATH:`pwd`/aom/dist/lib/pkgconfig"
wantehchang marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 5 additions & 0 deletions third-party/dav1d.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,8 @@ meson build --default-library=static --buildtype release --prefix "$(pwd)/dist"
ninja -C build
ninja -C build install
cd ..

echo ""
echo "----- NOTE ----"
echo "Please add the path to the pkg-config file to your PKG_CONFIG_PATH, like this:"
echo "export PKG_CONFIG_PATH=\$PKG_CONFIG_PATH:`pwd`/dav1d/dist/lib/x86_64-linux-gnu/pkgconfig"
wantehchang marked this conversation as resolved.
Show resolved Hide resolved
Loading