mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-30 02:37:15 +02:00
Fix compile error
This commit is contained in:
parent
ace5c07310
commit
a96cabd81a
3 changed files with 3 additions and 3 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -268,7 +268,7 @@ jobs:
|
||||||
key: ${{ runner.os }}-dependencies
|
key: ${{ runner.os }}-dependencies
|
||||||
- name: dependencies
|
- name: dependencies
|
||||||
if: steps.cache-dependencies.outputs.cache-hit != 'true'
|
if: steps.cache-dependencies.outputs.cache-hit != 'true'
|
||||||
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio boost-process --triplet x64-windows
|
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio --triplet x64-windows
|
||||||
- name: configure
|
- name: configure
|
||||||
run: |
|
run: |
|
||||||
echo vcpkg installation root: ${env:VCPKG_INSTALLATION_ROOT}
|
echo vcpkg installation root: ${env:VCPKG_INSTALLATION_ROOT}
|
||||||
|
|
2
.github/workflows/package.yml
vendored
2
.github/workflows/package.yml
vendored
|
@ -217,7 +217,7 @@ jobs:
|
||||||
key: ${{ runner.os }}-dependencies
|
key: ${{ runner.os }}-dependencies
|
||||||
- name: Get dependenciesenv
|
- name: Get dependenciesenv
|
||||||
if: steps.cache-dependencies.outputs.cache-hit != 'true'
|
if: steps.cache-dependencies.outputs.cache-hit != 'true'
|
||||||
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio boost-process --triplet x64-windows
|
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio --triplet x64-windows
|
||||||
- name: configure
|
- name: configure
|
||||||
run: |
|
run: |
|
||||||
echo vcpkg installation root: $env:VCPKG_INSTALLATION_ROOT
|
echo vcpkg installation root: $env:VCPKG_INSTALLATION_ROOT
|
||||||
|
|
|
@ -35,8 +35,8 @@
|
||||||
#pragma GCC diagnostic ignored "-Wpedantic"
|
#pragma GCC diagnostic ignored "-Wpedantic"
|
||||||
#include <boost/process/v2/execute.hpp>
|
#include <boost/process/v2/execute.hpp>
|
||||||
#include <boost/process/v2/process.hpp>
|
#include <boost/process/v2/process.hpp>
|
||||||
#endif
|
|
||||||
#pragma GCC diagnostic pop
|
#pragma GCC diagnostic pop
|
||||||
|
#endif
|
||||||
|
|
||||||
// standard headers
|
// standard headers
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
|
Loading…
Add table
Reference in a new issue