From fd61d752e313bf91a09c85020b3fb50067c610c8 Mon Sep 17 00:00:00 2001 From: Jocelyn Turcotte Date: Tue, 19 Nov 2013 17:55:49 +0100 Subject: Moving sources to src part 1: Move files. This only move files without adjusting any paths. This moves: - lib/quick -> src/webengine/api (API files) lib/quick -> src/webengine (other files) This contains the main QtWebEngine module library since . - lib/widgets -> src/webenginewidgets Also rename this directory to match its module name and rename Api to api. - lib -> src/core - process -> src/process - resources -> src/core/resources - tools/* -> tools/scripts/ The build directory is spread as follow: - build/build.pro -> src/core/gyp_run.pro - build/qmake_extras/* -> src/core/ (for the host and target .pro files) - build/qmake -> tools/qmake - Build related scripts -> tools/buildscripts Change-Id: I0cded1de772c99c0c1da6536c9afea353236b4a1 Reviewed-by: Zeno Albisser Reviewed-by: Pierre Rossi Reviewed-by: Andras Becsi --- src/src.pro | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/src.pro (limited to 'src/src.pro') diff --git a/src/src.pro b/src/src.pro new file mode 100644 index 000000000..bc0151536 --- /dev/null +++ b/src/src.pro @@ -0,0 +1,64 @@ +TEMPLATE = subdirs + +# The first three subdirs contain dummy .pro files that are used by qmake +# to generate a corresponding .gyp file + +# Phony pro file that extracts things like compiler and linker from qmake +qmake_extras.subdir = build/qmake_extras + +# Phony pro files that generate gyp files. Will be built by ninja. +lib.depends = qmake_extras + +# API libraries +webengine_lib.subdir = lib/quick +webengine_lib.target = sub-webengine-lib +webengine_lib.depends = build +quick_plugin_lib.subdir = lib/quick/plugin +quick_plugin_lib.target = sub-quick-plugin-lib +quick_plugin_lib.depends = webengine_lib +quick_experimental_plugin_lib.subdir = lib/quick/plugin/experimental +quick_experimental_plugin_lib.target = sub-quick-experimental-plugin-lib +quick_experimental_plugin_lib.depends = webengine_lib +widgets_lib.subdir = lib/widgets +widgets_lib.target = sub-widgets-lib +widgets_lib.depends = build + +process.depends = build +sub_examples.depends = quick_plugin_lib quick_experimental_plugin_lib +sub_tests.depends = quick_plugin_lib quick_experimental_plugin_lib + +# This is where we use the generated gypi files and run gyp_qtwebengine +build.depends = resources lib + +SUBDIRS += qmake_extras \ + resources \ + lib \ + process \ + build \ + webengine_lib \ + quick_plugin_lib \ + quick_experimental_plugin_lib + +qtHaveModule(widgets) { + SUBDIRS += widgets_lib + sub_examples.depends += widgets_lib + sub_tests.depends += widgets_lib +} + +# Ninja executable location needs to be determined early for extra targets. Should be fetched from cache most of the time anyway. +NINJA_EXECUTABLE = $$findOrBuildNinja() + +# Extra targets that invoke ninja on the desired configuration added for convenience +release.target = release +release.commands = $$NINJA_EXECUTABLE -C $$getOutDir()/Release +release.depends: qmake + +debug.target = debug +debug.commands = $$NINJA_EXECUTABLE -C $$getOutDir()/Debug +debug.depends: qmake + +QMAKE_EXTRA_TARGETS += release \ + debug + +# Move this to the beginning of the project file as soon as we moved to the src layout +load(qt_parts) -- cgit v1.2.3