mirror of https://github.com/odrling/Aegisub
change how ffmsindex is linked to ffms2 (use a #pragma instead of an extra dependency in the project file)
Originally committed to SVN as r2902.
This commit is contained in:
parent
36dbd86dd6
commit
02f7d0006c
|
@ -24,6 +24,10 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "ffms.h"
|
#include "ffms.h"
|
||||||
|
|
||||||
|
#if _MSC_VER >= 1200
|
||||||
|
#pragma comment(lib,"ffms2.lib")
|
||||||
|
#endif /* _MSC_VER */
|
||||||
|
|
||||||
int TrackMask;
|
int TrackMask;
|
||||||
int DumpMask;
|
int DumpMask;
|
||||||
bool Overwrite;
|
bool Overwrite;
|
||||||
|
|
Loading…
Reference in New Issue