@magdesign
So I installed clickable on my computer and
created a new project with:
clickable create
then I copied the whole git library from:
https://github.com/janbar/osmin
into the clickable created folder.
from terminal I executed:
git submodule init
git submodule update
mkdir build
Now I want to build the app for ubports, but I have no idea how.
The normal command would be:
cmake -B build -DBUILD_DEVICE_MOBILE=ON -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ .
followed by:
cmake --build build/ -j8
I tried with:
clickable
but getting following error:
Could not find a package configuration file provided by "Qt5RemoteObjects"
with any of the following names:
Qt5RemoteObjectsConfig.cmake
qt5remoteobjects-config.cmake
Add the installation prefix of "Qt5RemoteObjects" to CMAKE_PREFIX_PATH or
set "Qt5RemoteObjects_DIR" to a directory containing one of the above
files. If "Qt5RemoteObjects" provides a separate development package or
SDK, be sure it has been installed.
libqt5remoteobjects5-dev and libqt5remoteobjects5-bin are installed.
Can someone please help me on this !!
I guess its something with https://docs.ubports.com/en/latest/appdev/guides/dependencies.html,
so I need to modify the clickable.yaml, but what would I need to add??