• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSES/H03-May-2022-

autotests/H03-May-2022-7,2865,750

doc/api/H16-Feb-2022-1511

examples/H03-May-2022-3,6442,949

poqm/H01-Mar-2022-24,16919,910

src/H03-May-2022-43,35927,070

.gitignoreH A D16-Feb-2022285 2726

.gitlab-ci.ymlH A D16-Feb-2022289 75

.kde-ci.ymlH A D16-Feb-2022278 119

AUTHORSH A D16-Feb-2022788 2522

CMakePresets.jsonH A D16-Feb-20225.7 KiB168166

CMakePresets.json.licenseH A D16-Feb-2022103 32

KPimGAPIConfig.cmake.inH A D16-Feb-2022684 1913

Mainpage.doxH A D16-Feb-20221.2 KiB4131

Messages.shH A D16-Feb-2022105 31

README.mdH A D16-Feb-20221.2 KiB4028

metainfo.yamlH A D16-Feb-2022680 3028

metainfo.yaml.licenseH A D16-Feb-202262 32

sanitizers.suppH A D16-Feb-2022442 1715

README.md

1# LibKGAPI
2
3LibKGAPI (previously called LibKGoogle) is a C++ library that implements APIs for
4various Google services.
5
6Currently supported APIs:
7 * Calendar API v3 (https://developers.google.com/google-apps/calendar)
8 * Contacts API v3 (https://developers.google.com/google-apps/contacts/v3/)
9 * Tasks API v1 (https://developers.google.com/google-apps/tasks)
10 * Static Google Maps API v2 (https://developers.google.com/maps/documentation/staticmaps/)
11 * Drive API v2 (https://developers.google.com/drive/v2/reference)
12 * Blogger API v3 (https://developers.google.com/blogger/docs/3.0/reference/)
13
14Deprecated APIs:
15 * Latitude API v1 (https://developers.google.com/latitude/v1/)
16
17## Compiling:
18
19```
20mkdir build
21cd build
22cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
23make
24# As root:
25make install
26```
27
28To compile example applications, run cmake with `-DKGAPI_BUILD_EXAMPLES=TRUE` argument.
29To run automated tests, run `make test`. To disable building tests, run cmake with `-DBUILD_TESTING=OFF` argument.
30
31## BUGS:
32
33Submit bugs and feature requests to KDE bugzilla, product libkgapi:
34
35https://bugs.kde.org/enter_bug.cgi?product=libkgapi
36
37## API Documentation:
38
39https://api.kde.org/kdepim/libkgapi/html/index.html
40