Advertisement
Guest User

QMake project file

a guest
Dec 9th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. TEMPLATE = app
  2. CONFIG += console
  3. CONFIG -= app_bundle
  4. CONFIG -= qt
  5.  
  6. SOURCES += main.cpp
  7.  
  8. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../Libraries/POCO/v1.4/vc2012-with-odbc/compiled-libs/lib/ -lPocoFoundation
  9. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../Libraries/POCO/v1.4/vc2012-with-odbc/compiled-libs/lib/ -lPocoFoundationd
  10.  
  11. INCLUDEPATH += $$PWD/../../Libraries/POCO/v1.4/vc2012-with-odbc/compiled-libs/include
  12. DEPENDPATH += $$PWD/../../Libraries/POCO/v1.4/vc2012-with-odbc/compiled-libs/include
  13.  
  14. win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../../Libraries/POCO/v1.4/vc2012-with-odbc/compiled-libs/lib/libPocoFoundation.a
  15. else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../../Libraries/POCO/v1.4/vc2012-with-odbc/compiled-libs/lib/libPocoFoundationd.a
  16. else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../../Libraries/POCO/v1.4/vc2012-with-odbc/compiled-libs/lib/PocoFoundation.lib
  17. else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../../Libraries/POCO/v1.4/vc2012-with-odbc/compiled-libs/lib/PocoFoundationd.lib
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement