mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-19 14:15:54 +02:00
3rdparty: add SortFilterProxyModel QML helper
Can be used directly in QML without having to derive from QSortFilterProxyModel and manage source model settings from C++ code. Change-Id: Icac1f6dadfc0d1f64b4459ae0cdbebdd30b79b3e
This commit is contained in:
parent
43ab7e29d4
commit
ef0569b0c8
3 changed files with 19 additions and 4 deletions
10
.gitmodules
vendored
10
.gitmodules
vendored
|
@ -3,6 +3,10 @@
|
||||||
url = https://github.com/BlueDragon747/qrencode-win32.git
|
url = https://github.com/BlueDragon747/qrencode-win32.git
|
||||||
ignore = dirty
|
ignore = dirty
|
||||||
[submodule "sparkle/Sparkle"]
|
[submodule "sparkle/Sparkle"]
|
||||||
path = sparkle/Sparkle
|
path = sparkle/Sparkle
|
||||||
url = https://github.com/sparkle-project/Sparkle.git
|
url = https://github.com/sparkle-project/Sparkle.git
|
||||||
ignore = dirty
|
ignore = dirty
|
||||||
|
[submodule "3rdparty/SortFilterProxyModel"]
|
||||||
|
path = 3rdparty/SortFilterProxyModel
|
||||||
|
url = https://github.com/atraczyk/SortFilterProxyModel.git
|
||||||
|
ignore = dirty
|
||||||
|
|
1
3rdparty/SortFilterProxyModel
vendored
Submodule
1
3rdparty/SortFilterProxyModel
vendored
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit ccc4690624709d558293aa08cb45e8edf30f73b4
|
12
INSTALL.md
12
INSTALL.md
|
@ -94,10 +94,20 @@ Notes:
|
||||||
|
|
||||||
## Build only the client
|
## Build only the client
|
||||||
|
|
||||||
In order to use the Qt Client it is necessary to have the Qt version 5.14 or higher. If your system does not have it you can install it [from sources or download the binary installer](https://www.qt.io/download).
|
In order to use the Qt Client it is necessary to have the Qt version 6.2 or higher. If your system does not have it you can install it [from sources or download the binary installer](https://www.qt.io/download).
|
||||||
|
|
||||||
## Build only this repository
|
## Build only this repository
|
||||||
|
|
||||||
|
Clone with common required submodule (platform specific submodules will be cloned during the configure step)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://review.jami.net/jami-client-qt
|
||||||
|
cd jami-client-qt
|
||||||
|
git submodule update --recursive --init
|
||||||
|
```
|
||||||
|
|
||||||
|
Use CMake to build
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# In this repository
|
# In this repository
|
||||||
mkdir build
|
mkdir build
|
||||||
|
|
Loading…
Add table
Reference in a new issue