uwerat / qskinny

A lightweight framework on top of the Qt scene graph and only few classes from Qt/Quick. It is usable from C++ and/or QML.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No targets specified and no makefile found

Husenjon opened this issue · comments

I installed according to the manual
PREFIX=/opt/qskinny qmake -r
i use qt6

In the meantime we use cmake instead of qmake - unfortunately we forgot to update the tutorials.

There is nothing specific about how we use cmake and you can follow the usual steps you have to do with every project using Qt.

tutorials/03-writing-your-first-application.asciidoc needs to be adjusted for using cmake

The following commands worked for me:

cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=path/to/ninja -DCMAKE_INSTALL_PREFIX=/path/to/install -G Ninja -S /home/wake/CLionProjects/qskinny -B /home/wake/CLionProjects/qskinny/cmake-build-debug
cd cmake-build-debug
ninja
ninja install

Change the path to your own.

documentation has been updated