Skip to content

Commit

Permalink
Merge pull request #47 from Alzy/fixes
Browse files Browse the repository at this point in the history
Azure pipelines test + fix
  • Loading branch information
Alzy authored Dec 19, 2020
2 parents 1465753 + f9b3944 commit 704456c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
2 changes: 1 addition & 1 deletion src/obs-midi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
#define VERSION_H

#define GIT_BRANCH "fixes"
#define GIT_COMMIT_HASH "3e9ad09"
#define GIT_COMMIT_HASH "d9f877e"

#endif

0 comments on commit 704456c

Please sign in to comment.