2021-08-10 23:51:48 +02:00
|
|
|
#ifndef _VGMSTREAM_H_
|
|
|
|
#define _VGMSTREAM_H_
|
|
|
|
/* autogenerated version passed by param */
|
|
|
|
//todo detect if VGMSTREAM_VERSION is "" (may happen on script error)
|
|
|
|
#ifndef VGMSTREAM_VERSION
|
|
|
|
/* autogenerated version on file */
|
|
|
|
#ifdef VGMSTREAM_VERSION_AUTO
|
|
|
|
#include "version_auto.h"
|
|
|
|
#else
|
2021-08-07 20:41:50 +02:00
|
|
|
/* Static/fallback version.
|
|
|
|
* Version is autogenerated from Git (passed via compiler args, or updated with scripts), but this file is
|
2021-08-15 19:58:17 +02:00
|
|
|
* for Git-less builds (not installed or downloaded master). Builds that don't do the above should still work
|
2021-08-10 23:51:48 +02:00
|
|
|
* (compiling a well-behaved src shouldn't depend on calling arbitrary scripts). */
|
2022-03-16 23:06:00 +01:00
|
|
|
#define VGMSTREAM_VERSION "r1721"
|
2021-08-10 23:51:48 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|