Skip to content

Commit

Permalink
ci: specify CMAKE_INSTALL_LIBDIR for AppImage
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosalie241 committed Jan 22, 2024
1 parent e943e86 commit 895438d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ jobs:
export build_dir="$(pwd)/Build/AppImage"
export bin_dir="$(pwd)/Bin/AppImage"
cmake -S "$src_dir" -B "$build_dir" -DCMAKE_BUILD_TYPE="Release" \
-DPORTABLE_INSTALL="OFF" -DUPDATER=ON -DAPPIMAGE_UPDATER=ON \
-DUSE_ANGRYLION=ON -DCMAKE_INSTALL_PREFIX="/usr" -G "Ninja"
-DUSE_ANGRYLION=ON \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DCMAKE_INSTALL_LIBDIR="lib" \
-DPORTABLE_INSTALL="OFF" \
-DUPDATER=ON -DAPPIMAGE_UPDATER=ON \
-G "Ninja"
cmake --build "$build_dir"
cmake --install "$build_dir" --strip --prefix="$bin_dir/usr"
shell: bash
Expand Down

0 comments on commit 895438d

Please sign in to comment.