Advertisement
Guest User

Untitled

a guest
Oct 12th, 2015
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2015-10-12T13:07:04
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT += core gui
  8.  
  9. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  10.  
  11. TARGET = progress
  12. TEMPLATE = app
  13.  
  14.  
  15. SOURCES += main.cpp\
  16. mainwindow.cpp
  17.  
  18. HEADERS += mainwindow.h
  19.  
  20. FORMS += mainwindow.ui
  21.  
  22. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/C:/Program\ Files\ (x86)/Microsoft SDKs/Windows/v7.1A/Lib/ -lshell32
  23. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib/ -lshell32d
  24. else:unix: LIBS += -L$$PWD/C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib/ -lshell32
  25.  
  26. INCLUDEPATH += $$PWD/C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib
  27. DEPENDPATH += $$PWD/C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib
  28.  
  29. win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib/libshell32.a
  30. else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib/libshell32d.a
  31. else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib/shell32.lib
  32. else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib/shell32d.lib
  33. else:unix: PRE_TARGETDEPS += $$PWD/C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib/libshell32.a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement