Advertisement
Guest User

winconf-msvc.pri

a guest
Mar 4th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. strace_win:{
  2. contains(QMAKE_HOST.arch, x86):{
  3. # i686 arch requires frame pointer preservation
  4. QMAKE_CXXFLAGS_RELEASE += -Oy-
  5. QMAKE_CXXFLAGS_DEBUG += -Oy-
  6. }
  7. release:{
  8. QMAKE_CXXFLAGS_RELEASE += -Zi
  9. QMAKE_LFLAGS += "/DEBUG"
  10. }
  11. LIBS += dbghelp.lib
  12. }
  13.  
  14. QMAKE_LFLAGS += "/OPT:REF /OPT:ICF"
  15.  
  16. RC_FILE = qbittorrent.rc
  17.  
  18. # Enable Wide characters
  19. DEFINES += TORRENT_USE_WPATH
  20.  
  21. #Adapt the lib names/versions accordingly
  22. CONFIG(debug, debug|release) {
  23. LIBS += $$quote(-LC:/qBittorrent/boost_1_55_0/stage/lib/libboost_system-vc90-mt-s-1_51.lib)
  24. } else {
  25. LIBS += $$quote(-LC:/qBittorrent/boost_1_55_0/stage/lib/libboost_system-vc90-mt-s-1_51.lib)
  26. }
  27.  
  28. LIBS += advapi32.lib shell32.lib crypt32.lib User32.lib
  29. LIBS += libeay32.lib ssleay32.lib
  30. LIBS += PowrProf.lib
  31. LIBS += zlib.lib
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement