Add git_version.h and config_windows0.h

This commit is contained in:
Thomas Goyne 2012-09-29 07:14:23 -07:00
parent 0a5fa6ff39
commit b0df479ae3
2 changed files with 8 additions and 5 deletions

View File

@ -0,0 +1,3 @@
#define BUILD_GIT_VERSION_NUMBER 7013
#define BUILD_GIT_VERSION_STRING "3.0.0"
#define TAGGED_RELEASE 1

View File

@ -66,7 +66,7 @@
// Enable FFMS2 video and audio providers
// Requires: FFMS2 SDK
//#define WITH_FFMS2
#define WITH_FFMS2
#ifdef WITH_FFMS2
#pragma comment(lib, "ffms2.lib")
#endif
@ -107,7 +107,7 @@
// FFTW <http://fftw.org/> is a very fast library for computing the discrete fourier transform, but is a bit
// tricky to get working on Windows, and has the additional problem of being GPL licensed.
// Enable this option to use FFTW to get faster rendering of the audio spectrogram
//#define WITH_FFTW3
#define WITH_FFTW3
#ifdef WITH_FFTW3
#pragma comment(lib,libfftw.lib)
#endif
@ -124,20 +124,20 @@
// Where the update checker should look for updates
#define UPDATE_CHECKER_SERVER "updates.aegisub.org"
#define UPDATE_CHECKER_BASE_URL "/trunk"
#define UPDATE_CHECKER_BASE_URL "/3.0.0"
///////////// NOT RECOMMENDED /////////////
// Enable FontConfig
// Requires: fontconfig
//#define WITH_FONTCONFIG
#define WITH_FONTCONFIG
#ifdef WITH_FONTCONFIG
#pragma comment(lib,"libfontconfig.lib")
#endif
// Enable libass
// Requires: libass
//#define WITH_LIBASS
#define WITH_LIBASS
#ifdef WITH_LIBASS
#pragma comment(lib, "libass.lib")
#endif