Skip to content

Commit

Permalink
Addressing vcpkg problem. Packages are nor found.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaa committed Aug 16, 2024
1 parent c98dc89 commit 5b17687
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,18 +78,19 @@ jobs:
- name: Build project
run: |
cd ~
if [ -d build ]; then
echo "Build dir exists"
ls -la build
else
mkdir build
mkdir -v build
fi
pushd build
# echo "ls ~/vcpkg/scripts/buildsystems/vcpkg.cmake"
# ls ~/vcpkg/scripts/buildsystems/vcpkg.cmake
# echo "cat ~/vcpkg/scripts/buildsystems/vcpkg.cmake"
# cat ~/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake .. -DVCPKG_VERBOSE=ON -DRESTC_CPP_THREADED_CTX=ON -DCMAKE_BUILD_TYPE=Release -G "Ninja" -DCMAKE_TOOLCHAIN_FILE=~/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake ${GITHUB_WORKSPACE} -DVCPKG_VERBOSE=ON -DRESTC_CPP_THREADED_CTX=ON -DCMAKE_BUILD_TYPE=Release -G "Ninja" -DCMAKE_TOOLCHAIN_FILE=~/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake --build .
popd
Expand Down

0 comments on commit 5b17687

Please sign in to comment.