desubmodulize libsndfile - PLEASE READ

it appears a one-character typo in the cmake_minimum_required line prevents it from compiling under CMake 4.0.
in order to fix that, I had to take this thing out of submodules...

it is recommended to do this after you pull;

git submodule deinit extern/libsndfile
This commit is contained in:
tildearrow 2025-04-02 15:09:53 -05:00
parent cce8aa3579
commit 061991fe60
367 changed files with 106200 additions and 10 deletions

View file

@ -18,14 +18,14 @@ jobs:
strategy:
matrix:
config:
#- { name: 'Windows MSVC x86', os: windows-latest, compiler: msvc, arch: x86 }
#- { name: 'Windows MSVC x86_64', os: windows-latest, compiler: msvc, arch: x86_64 }
- { name: 'Windows MSVC x86', os: windows-latest, compiler: msvc, arch: x86 }
- { name: 'Windows MSVC x86_64', os: windows-latest, compiler: msvc, arch: x86_64 }
#- { name: 'Windows MinGW x86', os: ubuntu-20.04, compiler: mingw, arch: x86 }
#- { name: 'Windows MinGW x86_64', os: ubuntu-20.04, compiler: mingw, arch: x86_64 }
- { name: 'macOS x86_64', os: macos-13, arch: x86_64 }
- { name: 'macOS ARM', os: macos-latest, arch: arm64 }
#- { name: 'Linux x86_64', os: ubuntu-20.04, arch: x86_64 }
#- { name: 'Linux ARM', os: ubuntu-18.04, arch: armhf }
- { name: 'Linux x86_64', os: ubuntu-20.04, arch: x86_64 }
- { name: 'Linux ARM', os: ubuntu-18.04, arch: armhf }
fail-fast: true
name: ${{ matrix.config.name }}
@ -190,7 +190,6 @@ jobs:
cmake \
-B ${PWD}/build \
-DCMAKE_DCMAKE_POLICY_VERSION_MINIMUM=3.5 \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
-DWARNINGS_ARE_ERRORS=${USE_WAE} \