Skip to content

Commit 29eb962

Browse files
committed
disable platforms other than windows
1 parent d9faac3 commit 29eb962

3 files changed

Lines changed: 12 additions & 10 deletions

File tree

.github/workflows/multi-platform.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,19 @@ jobs:
1414
config:
1515
- name: Windows
1616
os: windows-latest
17+
18+
# TODO: uncomment platforms when we own the libs for them
1719

18-
- name: macOS
19-
os: macos-latest
20+
#- name: macOS
21+
# os: macos-latest
2022

21-
- name: Android32
22-
os: ubuntu-latest
23-
target: Android32
23+
#- name: Android32
24+
# os: ubuntu-latest
25+
# target: Android32
2426

25-
- name: Android64
26-
os: ubuntu-latest
27-
target: Android64
27+
#- name: Android64
28+
# os: ubuntu-latest
29+
# target: Android64
2830

2931
name: ${{ matrix.config.name }}
3032
runs-on: ${{ matrix.config.os }}

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ add_library(${PROJECT_NAME} SHARED
1717
)
1818

1919
set_property(TARGET ${PROJECT_NAME} PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Final>:Final>")
20-
20+
set_property(TARGET ${PROJECT_NAME} PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
2121

2222
if (NOT DEFINED ENV{GEODE_SDK})
2323
message(FATAL_ERROR "Unable to find Geode SDK! Please define GEODE_SDK environment variable to point to Geode")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void audioRaw() {
5959
### Windows
6060
To get the needed libraries on Windows, you can use vcpkg:
6161
```sh
62-
vcpkg install ffmpeg[core,avcodec,avformat,swscale,swresample,amf,x264,x265,nvcodec,openh264,aom,vpx]:x64-windows-static --recurse
62+
vcpkg install ffmpeg[core,avcodec,avformat,avfilter,swscale,swresample,amf,x264,x265,nvcodec,openh264,aom,vpx]:x64-windows-static --recurse
6363
```
6464
the other libraries are part of the Windows SDK
6565

0 commit comments

Comments
 (0)