diff options
Diffstat (limited to 'Source/JavaScriptCore/JavaScriptCore.pro')
-rw-r--r-- | Source/JavaScriptCore/JavaScriptCore.pro | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/JavaScriptCore.pro b/Source/JavaScriptCore/JavaScriptCore.pro new file mode 100644 index 000000000..cd3ab235f --- /dev/null +++ b/Source/JavaScriptCore/JavaScriptCore.pro @@ -0,0 +1,25 @@ +# ------------------------------------------------------------------- +# Main project file for JavaScriptSource +# +# See 'Tools/qmake/README' for an overview of the build system +# ------------------------------------------------------------------- + +TEMPLATE = subdirs +CONFIG += ordered + +WTF.file = wtf/wtf.pro +WTF.makefile = Makefile.WTF +SUBDIRS += WTF + +!v8 { + derived_sources.file = DerivedSources.pri + target.file = Target.pri + + SUBDIRS += derived_sources target + + addStrictSubdirOrderBetween(derived_sources, target) + + jsc.file = jsc.pro + jsc.makefile = Makefile.jsc + SUBDIRS += jsc +} |