Import Ubuntu.Component to workspace ( code completion in qtcreator ) - cross platform
https://github.com/lduboeuf/ut-qtcreator |
#run container clickable | |
docker run -i -t --entrypoint /bin/bash clickable/ubuntu-sdk:16.04-amd64 | |
#in an another terminal, get the container id | |
docker ps | |
#copy ubuntu components to local folder | |
docker cp [container id]:/usr/lib/x86_64-linux-gnu/qt5/qml/ [path to somewhere] | |
#set the environnement variable to profile | |
echo "export QML_IMPORT_PATH=[path to somewhere]" >> ~/.profile | |
#reload env or you might need to logout/login | |
source ~/.profile | |
##stop container | |
docker stop [container id] | |
#only work for Ubuntu 16.04 and 18.04: | |
#add ubports repository | |
sudo add-apt-repository "deb https://repo.ubports.com/ [bionic|xenial] main" | |
#install Ubuntu.components | |
sudo apt install qml-module-ubuntu-components | |
#qml components should be installed in "/usr/lib/x86_64-linux-gnu/qt5/qml" | |
#set the environnement variable to profile | |
echo "export QML_IMPORT_PATH=/usr/lib/x86_64-linux-gnu/qt5/qml" >> ~/.profile | |
#reload env or you might need to logout/login | |
source ~/.profile |
This comment has been minimized.
This comment has been minimized.
A lot of people are asking for this. Would be great if you could add that to the ubports docs. |
This comment has been minimized.
This comment has been minimized.
have you tried successfully ? , maybe more a StackOverflow or forum thing ? |
This comment has been minimized.
This comment has been minimized.
Yes, I tried way 1 and it worked for me! There is a Guides Section in the docs, where it would fit in imho. Some suggestions:
|
This comment has been minimized.
This comment has been minimized.
great it worked :). feel free to add it to the doc, or if i find time i will. |
This comment has been minimized.
This comment has been minimized.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
make code completion available for Ubuntu.components in QtCreator ( without the need of ubuntu-sdk )
Probably a shortest way for 1st ?proposition