PluginProcess.pro 597 B

12345678910111213141516171819202122232425262728
  1. # -------------------------------------------------------------------
  2. # Project file for the WebKit2 plugin process binary
  3. #
  4. # See 'Tools/qmake/README' for an overview of the build system
  5. # -------------------------------------------------------------------
  6. TEMPLATE = app
  7. QT += webkit
  8. TARGET = QtWebPluginProcess
  9. DESTDIR = $${ROOT_BUILD_DIR}/bin
  10. SOURCES += qt/PluginMainQt.cpp
  11. INCLUDEPATH = \
  12. $$PWD/../JavaScriptCore \
  13. $$PWD/../WTF \
  14. $$INCLUDEPATH
  15. INSTALLS += target
  16. isEmpty(INSTALL_BINS) {
  17. target.path = $$[QT_INSTALL_LIBEXECS]
  18. } else {
  19. target.path = $$INSTALL_BINS
  20. }