diff --git a/build/build.windows_x86_64.ps1 b/build/build.windows_x86_64.ps1 index 630ba27..a34de92 100644 --- a/build/build.windows_x86_64.ps1 +++ b/build/build.windows_x86_64.ps1 @@ -7,6 +7,6 @@ Push-Location $SCRIPT_DIR # リポジトリの下に置きたいが、GitHub Actions の D:\ の容量が少なくてビルド出来ない問題があるので # このパスにソースを配置する。 # また、WebRTC のビルドしたファイルは同じドライブに無いといけないっぽいのでこちらも設定する。 - python3 run.py build windows_x86_64 --debug --source-dir 'C:\webrtc' --build-dir 'C:\webrtc-build' --commit $COMMIT_HASH - python3 run.py package windows_x86_64 --debug --source-dir 'C:\webrtc' --build-dir 'C:\webrtc-build' + python3 run.py build windows_x86_64 --source-dir 'C:\webrtc' --build-dir 'C:\webrtc-build' --commit $COMMIT_HASH + python3 run.py package windows_x86_64 --source-dir 'C:\webrtc' --build-dir 'C:\webrtc-build' Pop-Location diff --git a/build/run.py b/build/run.py index e362142..4232286 100644 --- a/build/run.py +++ b/build/run.py @@ -763,6 +763,8 @@ def build_webrtc( 'rtc_use_pipewire=false', "use_custom_libcxx=false", "use_custom_libcxx_for_host=false", + 'rtc_include_pulse_audio=false', + 'rtc_include_internal_audio_device=true', ] else: raise Exception(f'Target {target} is not supported')