diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8b29838..0274877 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -88,7 +88,6 @@ jobs: scripts/build.sh glew scripts/build.sh libsamplerate scripts/build.sh SDL2 - scripts/build.sh spdlog - name: Build Linux if: ${{ matrix.env == 'Linux' }} diff --git a/scripts/spdlog.sh b/scripts/spdlog.sh deleted file mode 100755 index 2cef9f1..0000000 --- a/scripts/spdlog.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -set -e - -VERSION=v1.x - -git clone --depth 1 --branch $VERSION https://github.com/gabime/spdlog spdlog - -mkdir build -pushd build - -cmake ../spdlog \ - -DSPDLOG_ENABLE_PCH=ON \ - -DSPDLOG_BUILD_EXAMPLE=OFF \ - -DSPDLOG_USE_STD_FORMAT=ON \ - -DSPDLOG_DISABLE_DEFAULT_LOGGER=ON \ - $CMAKE_CONFIGURE_ARGS - -cmake --build . $CMAKE_BUILD_ARGS -cmake --install . $CMAKE_BUILD_ARGS - -popd - -license spdlog spdlog/LICENSE