AAC デコーダに FAAD2 と FDK AAC のどちらを使用するか実行時に選択できるようにした #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: | |
- Debug | |
- Release | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- uses: microsoft/setup-msbuild@v1 | |
- name: Build | |
run: | | |
msbuild Projects/LibISDB.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=x64 | |
- name: Run test | |
run: | | |
./Projects/x64/${{ matrix.configuration }}/libisdbtest.exe |