diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 22e7252..744e6b9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -219,13 +219,21 @@ jobs: - name: Zip Windows Artifacts uses: vimtor/action-zip@v1.2 with: - files: ${{github.workspace}}/data/ mcpe-windows/MinecraftPE.exe mcpe-windows/glfw3.dll mcpe-windows/libpng16.dll mcpe-windows/OpenAL32.dll mcpe-windows/z.dll + files: | + ${{github.workspace}}/data/ + mcpe-windows/MinecraftPE.exe + mcpe-windows/glfw3.dll + mcpe-windows/libpng16.dll + mcpe-windows/OpenAL32.dll + mcpe-windows/z.dll dest: minecraftpe-${{ steps.ref.outputs.hash }}-windows.zip - name: Zip Linux Artifacts uses: vimtor/action-zip@v1.2 with: - files: ${{github.workspace}}/data/ mcpe-linux/MinecraftPE # ye, you should install libraries by urself :trollface: + files: | + ${{github.workspace}}/data/ + mcpe-linux/MinecraftPE # ye, you should install libraries by urself :trollface: dest: minecraftpe-${{ steps.ref.outputs.hash }}-linux.zip - name: Zip Linux Server Artifacts diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f223d2..6ac8318 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -361,7 +361,7 @@ endif() # Client target_compile_definitions(${PROJECT_NAME} PUBLIC "OPENGL_ES" "NO_EGL" ${PLATFORM}) -target_link_libraries(${PROJECT_NAME} zlib ${PNG_LIB} alsoft.common OpenAL::OpenAL glfw ${EXTRA_LIBS}) +target_link_libraries(${PROJECT_NAME} zlib ${PNG_LIB} OpenAL::OpenAL glfw ${EXTRA_LIBS}) if (OpenSSL_FOUND) target_link_libraries(${PROJECT_NAME} OpenSSL::SSL OpenSSL::Crypto)