Skip to content

Commit 40bb3f3

Browse files
dbg : wslay include
1 parent bc877a2 commit 40bb3f3

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

  • .github/actions/build-library-and-upload

.github/actions/build-library-and-upload/action.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,8 @@ runs:
1616
- id: build
1717
run: |
1818
rm -rf out
19-
cmake --preset ${{ inputs.preset }} -DBUILD_SHARED_LIBS=ON
20-
21-
echo " DEBUG: wslay headers "
22-
find build/${{ inputs.preset }} -path "*wslay.h" -print || true
23-
echo " DEBUG: submodules "
24-
find submodules/vcpkg -path "*wslay.h" -print || true
25-
19+
cmake --preset ${{ inputs.preset }} -DBUILD_SHARED_LIBS=ON \
20+
-DCMAKE_CXX_FLAGS="-I${PWD}/build/${{ inputs.preset }}/vcpkg_installed/x64-linux-heroic/include"
2621
cmake --build ./build/${{ inputs.preset }} --config ${{ inputs.build-type }} --verbose
2722
cmake --install ./build/${{ inputs.preset }} --config ${{ inputs.build-type }}
2823
working-directory: ${{ inputs.nakama-cpp-path }}
@@ -34,7 +29,7 @@ runs:
3429
path="./out"
3530
for dir in "$path"/*/; do
3631
folder_name=$(basename "$dir")
37-
echo "folder-name=$folder_name" >> $GITHUB_OUTPUT
32+
echo "folder-name=$folder_name" >> $GITHUB_OUTPUT
3833
done
3934
working-directory: ${{ inputs.nakama-cpp-path }}
4035
shell: bash

0 commit comments

Comments
 (0)