| c++ Programming Glossary: includepathQt/mingw32 undefined reference errors… unable to link a .lib http://stackoverflow.com/questions/1137323/qt-mingw32-undefined-reference-errors-unable-to-link-a-lib  the main.cpp and added the location of those file in the INCLUDEPATH of the .pro . Until then everything seem fine I can use the.. of my .pro file QT opengl TARGET SilverEye TEMPLATE app INCLUDEPATH E SharedLibrary MessageBuffer SOURCES main.cpp silvereye.cpp.. 
 Compiling Cuda code in Qt Creator on Windows http://stackoverflow.com/questions/12266264/compiling-cuda-code-in-qt-creator-on-windows  'sm_10' NVCC_OPTIONS use_fast_math # include paths INCLUDEPATH CUDA_DIR include  CUDA_SDK common inc  CUDA_SDK .. shared inc.. spaces are put between quotation marks CUDA_INC join INCLUDEPATH ' I ' ' I ' ' ' # Configuration of the Cuda compiler CONFIG.. 
 How to link opencv in QtCreator and use Qt library http://stackoverflow.com/questions/15881913/how-to-link-opencv-in-qtcreator-and-use-qt-library  cvHello CONFIG console CONFIG app_bundle TEMPLATE app INCLUDEPATH C Programs opencv24 opencv_bin2 install include LIBS C Programs.. 
 how to add zlib to an existing qt installation http://stackoverflow.com/questions/4002757/how-to-add-zlib-to-an-existing-qt-installation  path by adding the following line to your project file INCLUDEPATH QT_INSTALL_PREFIX src 3rdparty zlib   share improve this answer.. 
 How to add external libraries to qt4 application c++ http://stackoverflow.com/questions/5314735/how-to-add-external-libraries-to-qt4-application-c  add something like this to the .pro file For Boost INCLUDEPATH d Biblioteki C boost boost_1_44_0a LIBPATH d Biblioteki C boost.. mt d 1_44 LIBS lboost_date_time mgw44 mt d 1_44 For Poco INCLUDEPATH d Biblioteki C Poco poco 1.3.6p2 mingw qt2 include LIBPATH d.. LIBS lPocoNetd LIBS lPocoUtild LIBS lPocoXML INCLUDEPATH is the location of directory with header files LIBPATH is the.. 
 Why are changes in source not always reflected in machine code after build while rebuild works? http://stackoverflow.com/questions/5470438/why-are-changes-in-source-not-always-reflected-in-machine-code-after-build-while  folders other than the current directory. E.g. if you have INCLUDEPATH somepath_in_my_project also add DEPENDPATH some_path_in_my_project.. if they include that header I suggest to add for each INCLUDEPATH line an identical DEPENDPATH line unless you include some system.. 
 Qt - How to get|compile Mysql driver http://stackoverflow.com/questions/6483523/qt-how-to-getcompile-mysql-driver  options. Or Add those lines in the pro file like below INCLUDEPATH C Program Files MySQL MySQL Server 5.1 include LIBS L C Program.. 
 |