summaryrefslogtreecommitdiff
path: root/examples/meson.build
Commit message (Collapse)AuthorAgeFilesLines
* Remove oauth1 proxyGünther Wagner2022-06-191-3/+0
| | | | | | | OAuth1 is discouraged to be used nowadays. Only flickr is the only service we used in the past which needed oauth1. They probably won't update their API to OAuth2 and therefore it was dropped in GOA. Following this example, dropping OAuth1 support too for librest.
* examples: rest demo gui applicationGünther Wagner2022-01-181-0/+2
|
* OAuth2 Pkce WorkflowGünther Wagner2022-01-121-0/+1
|
* Port to the Meson build systemNiels De Graef2021-10-211-0/+25
See the [Meson website] for a full reference. To build, test and/or install the librest library, you essentially need the following commands: ``` $ meson build $ ninja -C build $ meson test -C build $ ninja -C build install ``` For the GNOME initiative, see https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting [Meson website]: http://mesonbuild.com/ https://gitlab.gnome.org/GNOME/librest/merge_requests/1