aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-12 20:13:01 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-12 20:13:01 +0900
commit18cb395868f448a34dacd55a0b7b5c5eb9f06e27 (patch)
treec7356b5f4cfaa278794400d0541a73e89c0c8c5b
parentde378851ef9f6a89bb1f4fffa88681cc0e83d93f (diff)
downloadlibquotient-18cb395868f448a34dacd55a0b7b5c5eb9f06e27.tar.gz
libquotient-18cb395868f448a34dacd55a0b7b5c5eb9f06e27.zip
README.md: a few notes around using with qmake
-rw-r--r--README.md21
1 files changed, 14 insertions, 7 deletions
diff --git a/README.md b/README.md
index 97e1f9de..d0866c93 100644
--- a/README.md
+++ b/README.md
@@ -39,8 +39,9 @@ and bundle it with your application.
is known to work; mobile Windows and iOS might work too but never tried)
- Recent enough Linux examples: Debian Buster; Fedora 28; OpenSUSE Leap 15;
Ubuntu Bionic Beaver.
-- Qt 5 (either Open Source or Commercial), 5.9 or higher.
-- A build configuration tool:
+- Qt 5 (either Open Source or Commercial), 5.9 or higher;
+ 5.12 is recommended, especially if you use qmake
+- A build configuration tool (CMake is recommended, qmake is yet supported):
- CMake 3.10 or newer (from your package management system or
[the official website](https://cmake.org/download/))
- or qmake (comes with Qt)
@@ -65,8 +66,8 @@ If you use CMake, `find_package(Quotient)` sets up the client code to use
libQuotient, assuming the library development files are installed. There's no
documented procedure to use a preinstalled library with qmake; consider
introducing a submodule in your source tree and build it along with the rest
-of the application for now. Patches to provide .prl files for qmake
-are welcome.
+of the application for now. Note also that qmake is considered for phase-out
+in Qt 6 so you should probably think of moving over to CMake eventually.
Building with dynamic linkage are only tested on Linux at the moment and are
a recommended way of linking your application with libQuotient on this platform.
@@ -124,9 +125,15 @@ The library provides a .pri file with an intention to be included from a bigger
qmake qmc-example.pro
make all
```
-This will get you `debug/qmc-example` and `release/qmc-example` console executables that login to the Matrix server at matrix.org with credentials of your choosing (pass the username and password as arguments), run a sync long-polling loop and do some tests of the library API.
-
-Installing the standalone library with qmake is not implemented yet.
+This will get you `debug/qmc-example` and `release/qmc-example`
+console executables that login to the Matrix server at matrix.org with
+credentials of your choosing (pass the username and password as arguments),
+run a sync long-polling loop and do some tests of the library API. Note that
+qmake didn't really know about C++17 until Qt 5.12 so if your Qt is older
+you may have quite a bit of warnings during the compilation process.
+
+Installing the standalone library with qmake is not implemented yet; PRs are
+welcome though.
## Troubleshooting