updated README.md and chapter 3 docs to remove mention of qmake
This commit is contained in:
parent
4983634568
commit
ffe2394d0b
|
@ -1,6 +1,7 @@
|
||||||
Makefile
|
Makefile
|
||||||
.qmake.stash
|
.qmake.stash
|
||||||
.uuid
|
.uuid
|
||||||
|
build
|
||||||
obj
|
obj
|
||||||
moc
|
moc
|
||||||
rcc
|
rcc
|
||||||
|
|
|
@ -11,9 +11,8 @@ layout: docs
|
||||||
=== Building the QSkinny repository
|
=== Building the QSkinny repository
|
||||||
|
|
||||||
In this chapter we will write a simple QSkinny application on Linux from scratch.
|
In this chapter we will write a simple QSkinny application on Linux from scratch.
|
||||||
As a prerequisite, a recent Qt version (>= 5.6) should be available and the directory of
|
As a prerequisite, a recent Qt version (>= 5.6) should be available. On debian bullseye we need to install
|
||||||
its `qmake` binary in the current `$PATH`. On debian bullseye we need to install
|
these packages `build-essential qtbase5-dev qtbase5-private-dev
|
||||||
these packages `build-essential qt-qmake qtbase5-dev qtbase5-private-dev
|
|
||||||
qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`.
|
qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`.
|
||||||
|
|
||||||
Then we can build and install QSkinny to `/opt/qskinny` with the following commands:
|
Then we can build and install QSkinny to `/opt/qskinny` with the following commands:
|
||||||
|
@ -23,8 +22,9 @@ Then we can build and install QSkinny to `/opt/qskinny` with the following comma
|
||||||
cd /home/user/dev/
|
cd /home/user/dev/
|
||||||
git clone https://github.com/uwerat/qskinny.git
|
git clone https://github.com/uwerat/qskinny.git
|
||||||
cd qskinny
|
cd qskinny
|
||||||
PREFIX=/opt/qskinny qmake -r
|
mkdir build
|
||||||
make
|
cd build
|
||||||
|
cmake ../ && make
|
||||||
sudo make install
|
sudo make install
|
||||||
....
|
....
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue