-
Notifications
You must be signed in to change notification settings - Fork 7
/
README
42 lines (27 loc) · 1.39 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
========== README ==========
=== What is libmygpo-qt ===
libmygpo-qt is a Qt Library that wraps the gpodder.net Web API (http://wiki.gpodder.org/wiki/Web_Services/API_2)
=== Copyright & License ===
Copyright 2010 - 2018 Stefan Derkits ([email protected]) , Christian Wagner ([email protected]) & Felix Winter ([email protected])
See COPYING File for License
=== Maintainer ===
Current Maintainer: Stefan Derkits (HorusHorrendus @ irc.freenode.net)
=== Requirements ===
-) Qt 5.2 or higher
-) CMake 2.8.9 or higher
-) QJson
=== Links ===
Homepage: http://wiki.gpodder.org/wiki/Libmygpo-qt
Git Repo: https://github.com/gpodder/libmygpo-qt
Doxygen Documentation: http://stefan.derkits.at/libmygpo-doc/
Bugreports: http://bugs.gpodder.org
Contact: [email protected]
IRC Channel: #gpodder on FreeNode (irc.freenode.net)
=== How to Install ===
-) Create Directory "build"
-) change into build and run "cmake .. -DCMAKE_BUILD_TYPE=Debug"
-) make
-) make install (might need root)
To use libmygpo-qt include the Header "ApiRequest.h" into your Code. You can find the cflags & linker flags for libmygpo-qt either via pkg-config (.pc file will be installed to your System)
or via cmake (Mygpo-qtConfig.cmake will be installed to your system).
You can check the Example Application to see how you can use libmygpo-qt in your Application