QtWebKit.pro 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # -------------------------------------------------------------------
  2. # Root project file for QtWebKit
  3. #
  4. # See 'Tools/qmake/README' for an overview of the build system
  5. # -------------------------------------------------------------------
  6. TEMPLATE = subdirs
  7. CONFIG += ordered
  8. api.file = api.pri
  9. SUBDIRS += api
  10. build?(webkit1) {
  11. webkitwidgets.file = widgetsapi.pri
  12. SUBDIRS += webkitwidgets
  13. }
  14. build?(webkit2) {
  15. webprocess.file = WebKit2/WebProcess.pro
  16. SUBDIRS += webprocess
  17. enable?(PLUGIN_PROCESS) {
  18. pluginprocess.file = WebKit2/PluginProcess.pro
  19. SUBDIRS += pluginprocess
  20. }
  21. enable?(SUID_SANDBOX_LINUX) {
  22. sandboxprocess.file = WebKit2/SandboxProcess.pro
  23. SUBDIRS += sandboxprocess
  24. }
  25. }
  26. declarative.file = WebKit/qt/declarative/declarative.pro
  27. declarative.makefile = Makefile.declarative
  28. have?(QTQUICK): SUBDIRS += declarative
  29. build?(webkit1) {
  30. build?(tests) {
  31. tests.file = tests.pri
  32. SUBDIRS += tests
  33. }
  34. examples.file = WebKit/qt/examples/examples.pro
  35. examples.CONFIG += no_default_target
  36. examples.makefile = Makefile
  37. SUBDIRS += examples
  38. }