Christophe Dumez
14 years ago
6 changed files with 69 additions and 19 deletions
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?> |
||||
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'> |
||||
<dependency> |
||||
<dependentAssembly> |
||||
<assemblyIdentity type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*' /> |
||||
</dependentAssembly> |
||||
</dependency> |
||||
</assembly> |
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
IDI_ICON1 ICON DISCARDABLE "qbittorrent.ico" |
||||
IDI_ICON2 ICON DISCARDABLE "qbittorrent_file.ico" |
||||
1 24 DISCARDABLE "qbittorrent.exe.manifest" |
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
RC_FILE = qbittorrent_mingw.rc |
||||
|
||||
# Enable Wide characters |
||||
DEFINES += TORRENT_USE_WPATH |
||||
|
||||
#Adapt the lib names/versions accordingly |
||||
CONFIG(debug, debug|release) { |
||||
LIBS += libtorrent \ |
||||
libboost_system-mgw45-mt-d-1_46_1 \ |
||||
libboost_filesystem-mgw45-mt-d-1_46_1 \ |
||||
libboost_thread-mgw45-mt-d-1_46_1 |
||||
} else { |
||||
LIBS += libtorrent \ |
||||
libboost_system-mgw45-mt-1_46_1 \ |
||||
libboost_filesystem-mgw45-mt-1_46_1 \ |
||||
libboost_thread-mgw45-mt-1_46_1 |
||||
} |
||||
|
||||
LIBS += libadvapi32 libshell32 |
||||
LIBS += libcrypto.dll libssl.dll libwsock32 libws2_32 libz libiconv.dll |
||||
LIBS += libpowrprof |
@ -0,0 +1,18 @@
@@ -0,0 +1,18 @@
|
||||
RC_FILE = qbittorrent.rc |
||||
|
||||
#Adapt the lib names/versions accordingly |
||||
CONFIG(debug, debug|release) { |
||||
LIBS += libtorrentd.lib \ |
||||
libboost_system-vc90-mt-gd.lib \ |
||||
libboost_filesystem-vc90-mt-gd.lib \ |
||||
libboost_thread-vc90-mt-gd.lib |
||||
} else { |
||||
LIBS += libtorrent.lib \ |
||||
libboost_system-vc90-mt.lib \ |
||||
libboost_filesystem-vc90-mt.lib \ |
||||
libboost_thread-vc90-mt.lib |
||||
} |
||||
|
||||
LIBS += advapi32.lib shell32.lib |
||||
LIBS += libeay32MD.lib ssleay32MD.lib |
||||
LIBS += PowrProf.lib |
Loading…
Reference in new issue