From e0c67124a621321ef20fbfd460e79a0fea063740 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 25 Mar 2022 13:58:59 +0100 Subject: Midi music (#614) * add bassmidi everywhere but CI * hello CI please don't ban me from github * add lib and open midi files with the lib * overlooked windows CI * yes, overwrite everything * add tracker support * add file formats that bass supports * forgot .mid smh * load all plugins in one function --- test/CMakeLists.txt | 2 +- test/test_bass.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e43b5517..393a7537 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -4,5 +4,5 @@ find_package(Catch2 REQUIRED) add_executable(test test_aopacket.cpp test_caseloading.cpp test_apng.cpp test_bass.cpp ../include/aopacket.h ../src/aopacket.cpp) target_include_directories(test PRIVATE ../include) target_link_directories(test PRIVATE ../lib) -target_link_libraries(test PRIVATE Qt5::Core Qt5::Gui Qt5::Widgets Catch2::Catch2 bass bassopus discord-rpc) +target_link_libraries(test PRIVATE Qt5::Core Qt5::Gui Qt5::Widgets Catch2::Catch2 bass bassmidi bassopus discord-rpc) target_compile_definitions(Attorney_Online PRIVATE DISCORD) diff --git a/test/test_bass.cpp b/test/test_bass.cpp index f5f9198d..e48decd8 100644 --- a/test/test_bass.cpp +++ b/test/test_bass.cpp @@ -5,6 +5,7 @@ #include #include "bass.h" +#include "bassmidi.h" #include "bassopus.h" TEST_CASE("BASS URL streaming", "[bass][noci]") { -- cgit