Bump to 4.6.6
[qBittorrent.git] / conf.pri.windows
blob0b845b618fdeb2d1b95499ebd3c22c7e7f16a9c6
1 # Adapt these paths
2 # Point these to the include folders
3 INCLUDEPATH += $$quote(C:/qBittorrent/boost)
4 INCLUDEPATH += $$quote(C:/qBittorrent/libtorrent/include)
5 INCLUDEPATH += $$quote(C:/qBittorrent/zlib/include)
6 INCLUDEPATH += $$quote(C:/qBittorrent/openssl/include)
7 # Point these to the lib folders
8 LIBS += $$quote(-LC:/qBittorrent/boost/stage/lib)
9 LIBS += $$quote(-LC:/qBittorrent/libtorrent/lib)
10 LIBS += $$quote(-LC:/qBittorrent/zlib/lib)
11 LIBS += $$quote(-LC:/qBittorrent/openssl/lib)
13 # Adapt the lib names/versions accordingly
14 # If you want to use Boost auto-linking then disable
15 # BOOST_ALL_NO_LIB below and omit Boost libraries here
16 LIBS += libcrypto.lib libssl.lib libtorrent.lib zlib.lib
17 CONFIG(debug, debug|release) {
18     LIBS += boost_system-vc140-mt-d.lib
20 else {
21     LIBS += boost_system-vc140-mt.lib
24 # ...or if you use MinGW
25 #LIBS += libcrypto libssl libz
26 #CONFIG(debug, debug|release) {
27 #    LIBS += libtorrent-rasterbar \
28 #            libboost_system-mt
30 #else {
31 #    LIBS += libtorrent-rasterbar \
32 #            libboost_system-mt
35 # Disable to use Boost auto-linking
36 DEFINES += BOOST_ALL_NO_LIB
37 # Use one of the following options
38 DEFINES += BOOST_SYSTEM_STATIC_LINK
39 #DEFINES += BOOST_SYSTEM_DYN_LINK
40 # Enable it if compiling with libtorrent 3.x
41 #DEFINES += BOOST_SYSTEM_USE_UTF8
43 # Enable if libtorrent was built with this flag defined
44 #DEFINES += TORRENT_NO_DEPRECATE
45 # Enable if linking dynamically against libtorrent
46 #DEFINES += TORRENT_LINKING_SHARED
48 # Enable this if compiling with libtorrent 2.x
49 #DEFINES += QBT_USES_LIBTORRENT2
51 # Enable stack trace support
52 CONFIG += stacktrace
54 win32-msvc* {
55     QMAKE_CXXFLAGS += "/guard:cf"
56     QMAKE_LFLAGS += "/guard:cf"
57     QMAKE_LFLAGS_RELEASE += "/OPT:REF /OPT:ICF"