Add unzipfx as extra vendored dependency, for CI builds

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-12-29 17:21:06 +00:00
parent 9dc031d5aa
commit 685e62df24
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
36 changed files with 30307 additions and 0 deletions

19
deps/unzipfx/unzipfx/appDetails.h vendored Normal file
View file

@ -0,0 +1,19 @@
#ifndef __APP_DETAILS_H__
#define __APP_DETAILS_H__
#include "../../src/Cardinal/DistrhoPluginInfo.h"
#define SFX_APP_BANNER DISTRHO_PLUGIN_NAME " self-contained executable, based on UnZipSFX"
#ifdef WIN32
# define SFX_AUTORUN_CMD "\\" DISTRHO_PLUGIN_LABEL ".exe"
#else
# define SFX_AUTORUN_CMD "/" DISTRHO_PLUGIN_LABEL
#endif
void sfx_app_set_args(int argc, char** argv);
int sfx_app_autorun_now();
char* sfx_get_tmp_path(int withAppName);
#endif // __APP_DETAILS_H__