diff --git a/thirdparty/freetype/freetype.pro b/thirdparty/freetype/freetype.pro index bb66161a..fe68c3dd 100644 --- a/thirdparty/freetype/freetype.pro +++ b/thirdparty/freetype/freetype.pro @@ -15,8 +15,8 @@ win32 { SUB_LIB = "win32" } -DESTDIR = "$$FREETYPE_DIR_WITH_VERSION/lib/$$SUB_LIB" -OBJECTS_DIR = "$$FREETYPE_DIR_WITH_VERSION/objs" +DESTDIR = "lib/$$SUB_LIB" +OBJECTS_DIR = "objects" macx { DEFINES += "FT_MACINTOSH" diff --git a/thirdparty/libs.pri b/thirdparty/libs.pri index 67f92fa4..d7b7f244 100644 --- a/thirdparty/libs.pri +++ b/thirdparty/libs.pri @@ -12,24 +12,24 @@ win32 { } FREETYPE_DIR = "$$PWD/freetype/freetype-2.4.4" -LIBS += "-L$$FREETYPE_DIR/lib/$$SUB_LIB" "-lfreetype" +LIBS += "-L"$$PWD/freetype/lib/$$SUB_LIB" "-lfreetype" # no INCLUDEPATH, freetype is not used directly XPDF_DIR = "$$PWD/xpdf/xpdf-3.02" -LIBS += "-L$$XPDF_DIR/lib/$$SUB_LIB" "-lxpdf" +LIBS += "-L$$PWD/xpdf/lib/$$SUB_LIB" "-lxpdf" INCLUDEPATH += "$$XPDF_DIR" INCLUDEPATH += "$$XPDF_DIR/goo" INCLUDEPATH += "$$XPDF_DIR/splash" -BREAKPAD_DIR = "$$PWD/google-breakpad/r318" +BREAKPAD_DIR = "$$PWD/google-breakpad/google-breakpad-r768" INCLUDEPATH += "$$BREAKPAD_DIR/include" "$$BREAKPAD_DIR/include/google_breakpad" win32 { CONFIG(debug, debug|release) { - LIBS += "-L$$BREAKPAD_DIR/lib/$$SUB_LIB" "-ldbreakpad" + LIBS += "-L$$PWD/google-breakpad/lib/$$SUB_LIB" "-ldbreakpad" } CONFIG(release, debug|release) { - LIBS += "-L$$BREAKPAD_DIR/lib/$$SUB_LIB" "-lbreakpad" + LIBS += "-L$$PWD/google-breakpad/lib/$$SUB_LIB" "-lbreakpad" } LIBS += "-L$$PWD/openssl/0.9.8i/lib/VC/static" "-llibeay32MD" INCLUDEPATH += "$$PWD/openssl/0.9.8i/include" @@ -64,7 +64,7 @@ macx { LIBS += "-framework Carbon" LIBS += "-lcrypto" - LIBS += "-L$$BREAKPAD_DIR/lib/$$SUB_LIB" "-lbreakpad" + LIBS += "-L$$PWD/google-breakpad/lib/$$SUB_LIB" "-lbreakpad" LIBS += "$$PWD/unsanity/ape/APELite.o" INCLUDEPATH += "$$PWD/unsanity/ape" } diff --git a/thirdparty/xpdf/xpdf.pro b/thirdparty/xpdf/xpdf.pro index 8783cb72..9ecde62a 100644 --- a/thirdparty/xpdf/xpdf.pro +++ b/thirdparty/xpdf/xpdf.pro @@ -15,7 +15,7 @@ win32 { SUB_LIB = "win32" } -DESTDIR = "$$XPDF_DIR/lib/$$SUB_LIB" +DESTDIR = "lib/$$SUB_LIB" OBJECTS_DIR = "objects" @@ -27,7 +27,7 @@ macx { # Free type includes and lib FREETYPE_DIR = "../freetype/freetype-2.4.4" INCLUDEPATH += "$$FREETYPE_DIR/include" "$$FREETYPE_DIR/include/freetype2" -LIBS += "-L$$FREETYPE_DIR/lib" "-lfreetype" +LIBS += "-Lfreetype/lib" "-lfreetype" INCLUDEPATH += $$XPDF_DIR $$XPDF_DIR "$$XPDF_DIR/fofi" "$$XPDF_DIR/goo" "$$XPDF_DIR/splash" "$$XPDF_DIR/include" xpdf-3.02Extra