aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-20 20:16:23 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-20 23:50:48 +0900
commit34faa56649f04fafd6ace276ba186070f41901be (patch)
tree327042344f96b383950a639b0db008522a69f16e
parent514fa7512ea23691f7ae7e23257e752a0b758b50 (diff)
downloadlibquotient-34faa56649f04fafd6ace276ba186070f41901be.tar.gz
libquotient-34faa56649f04fafd6ace276ba186070f41901be.zip
Better support of qmake
qmc-example.pro added; better CONFIG for libqmatrixclient; refreshed files list. Closes #104
-rw-r--r--.travis.yml2
-rw-r--r--libqmatrixclient.pri4
-rw-r--r--qmc-example.pro7
3 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 24a182cf..313d1408 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,6 +15,8 @@ install:
- cmake ..
script:
- cmake --build . --target all
+ - cd ..
+ - qmake qmc-example.pro && make all
notifications:
webhooks:
urls:
diff --git a/libqmatrixclient.pri b/libqmatrixclient.pri
index dcdf1709..e974bda2 100644
--- a/libqmatrixclient.pri
+++ b/libqmatrixclient.pri
@@ -1,5 +1,5 @@
QT += network
-CONFIG += c++11
+CONFIG += c++11 warn_on rtti_off
INCLUDEPATH += $$PWD
@@ -8,7 +8,7 @@ HEADERS += \
$$PWD/connection.h \
$$PWD/room.h \
$$PWD/user.h \
- $$PWD/state.h \
+ $$PWD/util.h \
$$PWD/events/event.h \
$$PWD/events/roommessageevent.h \
$$PWD/events/roomnameevent.h \
diff --git a/qmc-example.pro b/qmc-example.pro
new file mode 100644
index 00000000..4dc3fed1
--- /dev/null
+++ b/qmc-example.pro
@@ -0,0 +1,7 @@
+TEMPLATE = app
+
+windows { CONFIG += console }
+
+include(libqmatrixclient.pri)
+
+SOURCES += examples/qmc-example.cpp