From ae6ba604b6ffa0db49579c2ba8786ee7285cf5f6 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Sat, 13 Jan 2024 11:41:22 +0100 Subject: [PATCH] using cmake instead of make in the docs --- README.md | 4 ++-- doc/tutorials/03-writing-your-first-application.asciidoc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 97ac24a4..22db8c1f 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ It might support other versions of Qt, but you can rely on: - current long term supported ( LTS ) version of Qt ( at the moment Qt 6.5.x ) - current version of Qt -How to build/install and use QSkinny is described in this -[tutorial](doc/tutorials/03-writing-your-first-application.asciidoc) +How to build, install and use QSkinny is described in this +[tutorial](doc/tutorials/03-writing-your-first-application.asciidoc). If you want to know more about QSkinny - or even like to give it a specific direction - please contact support@qskinny.org. diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index c4202ebe..65cdf7c4 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -27,8 +27,8 @@ Then we can build and install QSkinny to `/opt/qskinny` with the following comma $ git clone https://github.com/uwerat/qskinny.git # clone $ cd qskinny $ mkdir build && cd build -$ cmake ../ && make # build -$ sudo make install # install +$ cmake .. && cmake --build . +$ sudo cmake --install . --prefix "/opt/qskinny" .... To target a specific Qt version simply pass the cmake build variable `QSK_QT_VERSION` during the build step: