Difference between revisions of "Getting Started"

From WebOS-Ports
Jump to navigation Jump to search
m (List LNC as a QML app)
(Version info)
Line 7: Line 7:
 
What you will need:
 
What you will need:
  
* Qt 5.4 or up and Qt Creator (included with Qt which can be downloaded from http://www.qt.io/download-open-source/) or installed on Linux using one of these commands:
+
* Qt 5.5 or up and Qt Creator (included with Qt which can be downloaded from http://www.qt.io/download-open-source/) or installed on Linux using one of these commands:
*; Ubuntu <15.04 (Vivid Vervet)/Debian
+
*; Ubuntu <16.04 (Xenial Xerus)/Debian
 
*: You will need to download the version direct from Qt at http://www.qt.io/download-open-source/  The versions included in the system repositories are too old.
 
*: You will need to download the version direct from Qt at http://www.qt.io/download-open-source/  The versions included in the system repositories are too old.
*; Ubuntu >=15.04 (Vivid Vervet) (untested and may need to be changed a bit)
+
*; Ubuntu >=16.04 (Xenial Xerus) (untested and may need to be changed a bit)
 
*: <pre>sudo apt-get install qtcreator qtdeclarative5-private-dev qtbase5-private-dev qtdeclarative5-qtmultimedia-plugin # Due to the way Qt is packaged, we also need to install some dependencies.</pre>
 
*: <pre>sudo apt-get install qtcreator qtdeclarative5-private-dev qtbase5-private-dev qtdeclarative5-qtmultimedia-plugin # Due to the way Qt is packaged, we also need to install some dependencies.</pre>
*; Fedora
+
*; Fedora (this one is also untested and may be too old)
 
*: <pre>yum install qt-creator</pre>
 
*: <pre>yum install qt-creator</pre>
*; Gentoo
+
*; Gentoo (untested)
*: <pre>emerge dev-qt/qt-creator</pre>
+
*: Unmask a version of Qt &gt;= 5.5 (needed at the time of writing), then run: <pre>emerge dev-qt/qt-creator</pre>
  
 
* lune-next-cardshell (This acts as both the system shell and a library of components)
 
* lune-next-cardshell (This acts as both the system shell and a library of components)

Revision as of 23:00, 1 January 2016

How to get started as a developer?

QML Apps

We have various apps and components written in QML. By using stub data you'll be able to use most of them on a desktop for agile development :)

What you will need:

  • Qt 5.5 or up and Qt Creator (included with Qt which can be downloaded from http://www.qt.io/download-open-source/) or installed on Linux using one of these commands:
    Ubuntu <16.04 (Xenial Xerus)/Debian
    You will need to download the version direct from Qt at http://www.qt.io/download-open-source/ The versions included in the system repositories are too old.
    Ubuntu >=16.04 (Xenial Xerus) (untested and may need to be changed a bit)
    sudo apt-get install qtcreator qtdeclarative5-private-dev qtbase5-private-dev qtdeclarative5-qtmultimedia-plugin # Due to the way Qt is packaged, we also need to install some dependencies.
    Fedora (this one is also untested and may be too old)
    yum install qt-creator
    Gentoo (untested)
    Unmask a version of Qt >= 5.5 (needed at the time of writing), then run:
    emerge dev-qt/qt-creator
  • lune-next-cardshell (This acts as both the system shell and a library of components)
    1. git clone https://github.com/webOS-ports/luna-next-cardshell.git
  • luneos-components (This is our shared library of components used across various QML apps and can be found at https://github.com/webOS-ports/luneos-components)
    1. git clone https://github.com/webOS-ports/luneos-components.git
    2. Open the luneos-components.pro file in Qt Creator.
    3. Under Projects (on the left side), go to the Build tab (should be the default) and change the following settings:
      1. Deactivate Shadow Build.
      2. For the qmake build steps, click on Details to expand the edit area.
      3. Set Additional Arguments to:
        CONFIG+=desktop
    4. Now, under the Run tab at the top:
      1. Set Executable to
        qmlscene
      2. Set Additional Arguments to
        -l modules -l test/imports examples/gallery/main.qml
      3. Under Run Environment, click Details to expand the settings.
      4. Add a setting called
        QT_QUICK_CONTROLS_STYLE
        and give it a value of
        LuneOS
  • Our QML apps being:
  • luna-next-cardshell itself
  • FirstUse
  • Browser
  • Phone
  • webos-keyboard