#------------------------------------------------- # # Project created by QtCreator 2016-06-17T10:03:52 # #------------------------------------------------- #include QQt's header (add QQt header to includepath) include(../../src/qqt_header.pri) #CONFIG += BUILD_SRC contains (CONFIG, BUILD_SRC) { #if you want to build src but not link QQt in this project #include(../../src/qqt.pri) } else { #if you want to link QQt library include(../qqt_library.pri) } QT += core gui webkit webkitwidgets greaterThan(QT_MAJOR_VERSION, 4): QT += widgets TARGET = qqtwebkit TEMPLATE = app INCLUDEPATH += . SOURCES += $$PWD/main.cpp $$PWD/qqtapp.cpp $$PWD/qqtwindow.cpp HEADERS += $$PWD/qqtapp.h $$PWD/qqtwindow.h FORMS += $$PWD/qqtwindow.ui