Skip to content

Commit

Permalink
Re-enable install directory independent of build in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuperino committed Sep 15, 2024
1 parent dac5121 commit 60f6586
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ else
fi

# Constants
CMAKE_INSTALL_PREFIX="build/install"
CMAKE_INSTALL_PREFIX="install"
mkdir -p "$CMAKE_INSTALL_PREFIX"

echo -e "\nBuild directory is ./build"
Expand Down Expand Up @@ -146,7 +146,7 @@ else
VCPKG=./3rdparty/vcpkg/vcpkg
fi
# Install VCPKG packages
$VCPKG install --x-install-root "$CMAKE_PREFIX_PATH" gettext gettext-libintl
$VCPKG install --x-install-root $CMAKE_PREFIX_PATH gettext gettext-libintl
# Copy installed packages into install prefix
for package in ./3rdparty/vcpkg/packages/*; do
echo $package
Expand Down

0 comments on commit 60f6586

Please sign in to comment.