From f9b39440a07c03e397697e3333acdc8727d00c38 Mon Sep 17 00:00:00 2001 From: Alzy Date: Sat, 19 Dec 2020 00:23:05 -0800 Subject: [PATCH] Azure pipelines test + fix --- CMakeLists.txt | 7 ++++++- src/obs-midi.cpp | 2 +- src/version.h | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 13f04c4f..2db29901 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -273,4 +273,9 @@ endif() # -- Fixes issue where plugin isn't copied to rundir plugins directory on local build -- -install_obs_plugin_with_data(obs-midi data) +if(WIN32) + if (${isAzure}) + else () + install_obs_plugin_with_data(obs-midi data) + endif() +endif() diff --git a/src/obs-midi.cpp b/src/obs-midi.cpp index 512b989d..b261b518 100644 --- a/src/obs-midi.cpp +++ b/src/obs-midi.cpp @@ -45,7 +45,7 @@ eventsPtr _eventsSystem; bool obs_module_load(void) { - blog(LOG_INFO, "MIDI LOADED :)"); + blog(LOG_INFO, "MIDI LOADED! :)"); // Device Manager Setup _deviceManager = DeviceManagerPtr(new DeviceManager()); diff --git a/src/version.h b/src/version.h index 2e4927cd..fad16610 100644 --- a/src/version.h +++ b/src/version.h @@ -2,6 +2,6 @@ #define VERSION_H #define GIT_BRANCH "fixes" -#define GIT_COMMIT_HASH "3e9ad09" +#define GIT_COMMIT_HASH "d9f877e" #endif