The source project of this merge request has been removed.
Fix wrong includes
The file /usr/include/obs/obs-frontend-api.h has two includes:
#include <obs.h>
#include <util/darray.h>
These includes must be changed to
#include <obs/obs.h>
#include <obs/util/darray.h>
because the headers from OBS in Debian are put in 'obs/'. However, when building obs-studio, these includes will be called from its original path. Consequently, is needed to change the path after the build process to make the content of the libobs-dev useful.