From 7b6a8811be0255c244ef2aee28339f346f141165 Mon Sep 17 00:00:00 2001 From: Karl Blomster Date: Tue, 5 May 2009 21:43:49 +0000 Subject: [PATCH] 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. --- aegisub/FFmpegSource2/ffmsindex.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/aegisub/FFmpegSource2/ffmsindex.cpp b/aegisub/FFmpegSource2/ffmsindex.cpp index 12e59b8dd..f33d3b944 100644 --- a/aegisub/FFmpegSource2/ffmsindex.cpp +++ b/aegisub/FFmpegSource2/ffmsindex.cpp @@ -24,6 +24,10 @@ #include #include "ffms.h" +#if _MSC_VER >= 1200 +#pragma comment(lib,"ffms2.lib") +#endif /* _MSC_VER */ + int TrackMask; int DumpMask; bool Overwrite;