qBittorrent/winconf.pri

62 lines
1.9 KiB
Text
Raw Normal View History

2014-12-20 20:29:17 +03:00
# Adapt these paths on Windows
2015-06-15 15:20:30 +03:00
# Point this to the boost include folder
2014-12-20 20:29:17 +03:00
INCLUDEPATH += $$quote(C:/qBittorrent/boost_1_51_0)
2015-06-15 15:20:30 +03:00
# Point this to the libtorrent include folder
2014-12-20 20:29:17 +03:00
INCLUDEPATH += $$quote(C:/qBittorrent/RC_0_16/include)
2015-06-15 15:20:30 +03:00
# Point this to the zlib include folder
2014-12-20 20:29:17 +03:00
INCLUDEPATH += $$quote(C:/qBittorrent/Zlib/include)
2015-06-15 15:20:30 +03:00
# Point this to the openssl include folder
INCLUDEPATH += $$quote(C:/qBittorrent/openssl/include)
2014-12-20 20:29:17 +03:00
2015-06-15 15:20:30 +03:00
# Point this to the boost lib folder
2014-12-20 20:29:17 +03:00
LIBS += $$quote(-LC:/qBittorrent/boost_1_51_0/stage/lib)
2015-06-15 15:20:30 +03:00
# Point this to the libtorrent lib folder
2014-12-20 20:29:17 +03:00
LIBS += $$quote(-LC:/qBittorrent/RC_0_16/bin/<path-according-to-the-build-options-chosen>)
2015-06-15 15:20:30 +03:00
# Point this to the zlib lib folder
2014-12-20 20:29:17 +03:00
LIBS += $$quote(-LC:/qBittorrent/Zlib/lib)
2015-06-15 15:20:30 +03:00
# Point this to the openssl lib folder
LIBS += $$quote(-LC:/qBittorrent/openssl/lib)
2014-12-20 20:29:17 +03:00
# LIBTORRENT DEFINES
DEFINES += BOOST_ALL_NO_LIB
DEFINES += BOOST_ASIO_HASH_MAP_BUCKETS=1021
DEFINES += BOOST_ASIO_SEPARATE_COMPILATION
# After 1.55 some Windows users reported regular UI freezes.
# This makes ASIO use the pre-1.56 way of doing things. See issue #2003
DEFINES += BOOST_ASIO_DISABLE_CONNECTEX
# Boost 1.60+ defaults to Vista+ support. The define below enables XP support again.
DEFINES += BOOST_USE_WINAPI_VERSION=0x0501
2014-12-20 20:29:17 +03:00
DEFINES += BOOST_EXCEPTION_DISABLE
DEFINES += BOOST_SYSTEM_STATIC_LINK=1
DEFINES += TORRENT_USE_OPENSSL
DEFINES += TORRENT_DISABLE_GEO_IP
DEFINES += TORRENT_DISABLE_RESOLVE_COUNTRIES
2014-12-20 20:29:17 +03:00
DEFINES += UNICODE
DEFINES += _UNICODE
DEFINES += WIN32
DEFINES += _WIN32
DEFINES += WIN32_LEAN_AND_MEAN
DEFINES += _WIN32_WINNT=0x0500
DEFINES += _WIN32_IE=0x0500
DEFINES += _CRT_SECURE_NO_DEPRECATE
DEFINES += _SCL_SECURE_NO_DEPRECATE
DEFINES += __USE_W32_SOCKETS
DEFINES += _FILE_OFFSET_BITS=64
CONFIG(debug, debug|release) {
DEFINES += TORRENT_DEBUG
} else {
DEFINES += NDEBUG
}
2015-06-15 15:20:30 +03:00
# Enable backtrace support
2014-12-20 20:29:17 +03:00
CONFIG += strace_win
win32-g++ {
include(winconf-mingw.pri)
2014-12-20 20:29:17 +03:00
}
else {
include(winconf-msvc.pri)
2014-12-20 20:29:17 +03:00
}