diff --git a/aegisub/setup.cpp b/aegisub/setup.cpp index 081b47a7c..a4efca54d 100644 --- a/aegisub/setup.cpp +++ b/aegisub/setup.cpp @@ -173,9 +173,11 @@ // FreeType2 #ifdef WITH_FREETYPE2 #ifdef __WXDEBUG__ -#pragma comment(lib,"freetype233MT_D.lib") +//#pragma comment(lib,"freetype233MT_D.lib") +#pragma comment(lib,FT2_LIB_DEBUG) #else -#pragma comment(lib,"freetype233MT.lib") +//#pragma comment(lib,"freetype233MT.lib") +#pragma comment(lib,FT2_LIB_RELEASE) #endif #endif diff --git a/aegisub/win32/config0.h b/aegisub/win32/config0.h index ba51180c5..e599e065e 100644 --- a/aegisub/win32/config0.h +++ b/aegisub/win32/config0.h @@ -61,12 +61,15 @@ ///////////// MEDIUM PRIORITY //////////// // Enable FreeType2 font lister for the fonts collector +// If you're on Visual Studio, also uncomment the library names and make sure they match the files that you have // Requires: FreeType2 //#define WITH_FREETYPE2 +//#define FT2_LIB_RELEASE "freetype235.lib" +//#define FT2_LIB_DEBUG "freetype235_D.lib" // Enable CSRI, required for styles previews in the style editor and some video providers -// Requires: csri +// Requires: csri (in repository) //#define WITH_CSRI