summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2018-01-03 02:39:23 +0900
committerTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2018-01-03 03:18:29 +0900
commit7cd388558f49166b7df2811fdf649e93230017b5 (patch)
tree9fb17056c416f7b960fe68375af589634c6427fb /README
parent8655fb6da62f8617b946e7c933ea151b43de2234 (diff)
Initial import of QtAGLExtraseel_5.0.0eel/5.0.05.0.0
Qt AGLExtras module provides a set of easy to create AGL Qt application. It uses the AGL HMI and application framework, therefore the application can be easily integrated to AGL HomeScreen/WindowManager on AGL Demo Platform. Change-Id: I38a47aefcda8ee4ded759d56c5149ebbe22f94a9 Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'README')
-rw-r--r--README48
1 files changed, 48 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..62a6446
--- /dev/null
+++ b/README
@@ -0,0 +1,48 @@
+---------------
+Qt AGLExtras
+---------------
+
+Qt AGLExtras module provides a set of easy to create AGL Qt application.
+It uses the AGL HMI and application framework, therefore the application
+can be easily integrated to AGL HomeScreen/WindowManager on AGL Demo
+Platform.
+
+System Requirements
+===================
+
+- Qt 5.8 or newer
+- QtQuick 2 is required
+- AGL Application Framework 2.0 or newer
+- AGL HMI Framework 2017 or newer
+
+Building
+========
+
+Configure the project with qmake:
+ qmake
+
+After running qmake, build the project with make:
+ make
+
+The above generates the default makefiles for your configuration, which is
+typically the release build if you are using precompiled binary AGL
+distribution. To build both debug and release, or one specifically, use
+of the following qmake lines instead.
+
+For debug builds:
+ qmake CONFIG+=debug
+ make
+ or
+ qmake CONFIG+=debug_and_release
+ make debug
+
+For release builds:
+ qmake CONFIG+=release
+ or
+ qmake CONFIG+=debug_and_release
+
+After building, install the module to your AGL SDK directory:
+ make install
+
+If you want to uninstall the module:
+ make uninstall