using cmake instead of make in the docs
This commit is contained in:
parent
097bfbe26a
commit
ae6ba604b6
@ -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 long term supported ( LTS ) version of Qt ( at the moment Qt 6.5.x )
|
||||||
- current version of Qt
|
- current version of Qt
|
||||||
|
|
||||||
How to build/install and use QSkinny is described in this
|
How to build, install and use QSkinny is described in this
|
||||||
[tutorial](doc/tutorials/03-writing-your-first-application.asciidoc)
|
[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
|
If you want to know more about QSkinny - or even like to give it a specific
|
||||||
direction - please contact support@qskinny.org.
|
direction - please contact support@qskinny.org.
|
||||||
|
@ -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
|
$ git clone https://github.com/uwerat/qskinny.git # clone
|
||||||
$ cd qskinny
|
$ cd qskinny
|
||||||
$ mkdir build && cd build
|
$ mkdir build && cd build
|
||||||
$ cmake ../ && make # build
|
$ cmake .. && cmake --build .
|
||||||
$ sudo make install # install
|
$ 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:
|
To target a specific Qt version simply pass the cmake build variable `QSK_QT_VERSION` during the build step:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user