get rid of SDL2's dbus dependency
This commit is contained in:
parent
95b8727d0c
commit
4f37d900c4
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
|||||||
build_windows:
|
build_windows:
|
||||||
name: Build OpenStarbound Windows x64
|
name: Build OpenStarbound Windows x64
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.windows == true) }}
|
if: ${{ (github.event_name == 'workflow_dispatch') && (inputs.windows == true) }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@ -103,7 +103,7 @@ jobs:
|
|||||||
|
|
||||||
build_linux:
|
build_linux:
|
||||||
name: Build OpenStarbound Linux x86_64
|
name: Build OpenStarbound Linux x86_64
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-20.04
|
||||||
if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.linux == true) }}
|
if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.linux == true) }}
|
||||||
env:
|
env:
|
||||||
CC: clang
|
CC: clang
|
||||||
@ -171,7 +171,7 @@ jobs:
|
|||||||
build-mac-intel:
|
build-mac-intel:
|
||||||
name: Build OpenStarbound macOS x86_64
|
name: Build OpenStarbound macOS x86_64
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.macOS == true) }}
|
if: ${{ (github.event_name == 'workflow_dispatch') && (inputs.macOS == true) }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
@ -213,7 +213,7 @@ jobs:
|
|||||||
build-mac-arm:
|
build-mac-arm:
|
||||||
name: Build OpenStarbound macOS arm64
|
name: Build OpenStarbound macOS arm64
|
||||||
runs-on: macos-14
|
runs-on: macos-14
|
||||||
if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.macOS == true) }}
|
if: ${{ (github.event_name == 'workflow_dispatch') && (inputs.macOS == true) }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
@ -2,7 +2,8 @@
|
|||||||
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
|
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"glew",
|
"glew",
|
||||||
"sdl2",
|
{ "name": "sdl2", "default-features": false, "features": ["wayland", "x11", "alsa", "ibus"], "platform": "linux" },
|
||||||
|
{ "name": "sdl2", "platform": "windows" },
|
||||||
"libvorbis",
|
"libvorbis",
|
||||||
"zlib",
|
"zlib",
|
||||||
"freetype",
|
"freetype",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user