aboutsummaryrefslogtreecommitdiffstats
path: root/sync.profile
diff options
context:
space:
mode:
authorChristian Strømme <christian.stromme@digia.com>2013-09-19 12:33:56 +0200
committerChristian Stromme <christian.stromme@digia.com>2013-09-20 03:03:07 +0200
commite5d6abb31861f8e13b2348575e38daf0ca1511c3 (patch)
treea98454cb5c1a021031646587b9afcd5aaaa74823 /sync.profile
parent0ea86574a4ca430a16867d09776f76124f38d201 (diff)
Add Qt JNI API.
The QJNI API's provide an easy way to communicate with Java API's from C++. The API consists of two classes, QJNIObject which acts as a wrapper around Java classes and QJNIEnvironment which attaches the current thread to the Java VM and exposes the Java Native Interface. Change-Id: I9cdc395249de74f940b75eab9f2bd32347d5d432 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile15
1 files changed, 15 insertions, 0 deletions
diff --git a/sync.profile b/sync.profile
new file mode 100644
index 0000000..fdafa78
--- /dev/null
+++ b/sync.profile
@@ -0,0 +1,15 @@
+%modules = ( # path to module name map
+ "QtAndroidExtras" => "$basedir/src/androidextras",
+);
+%moduleheaders = ( # restrict the module headers to those found in relative path
+);
+# Module dependencies.
+# Every module that is required to build this module should have one entry.
+# Each of the module version specifiers can take one of the following values:
+# - A specific Git revision.
+# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
+# - an empty string to use the same branch under test (dependencies will become "refs/heads/master" if we are in the master branch)
+#
+%dependencies = (
+ "qtbase" => "",
+);