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 "ffms.h"
|
||||
|
||||
#if _MSC_VER >= 1200
|
||||
#pragma comment(lib,"ffms2.lib")
|
||||
#endif /* _MSC_VER */
|
||||
|
||||
int TrackMask;
|
||||
int DumpMask;
|
||||
bool Overwrite;
|
||||
|
|
Loading…
Reference in New Issue