summaryrefslogtreecommitdiff
path: root/meson_options.txt
Commit message (Collapse)AuthorAgeFilesLines
* Port documentation to gi-docgenMaximiliano2022-02-021-1/+1
|
* Add TPM2 API and its implementations to eggDhanuka Warusadura2021-08-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | These changes define the TPM2 API and add its implementations to the incubation area (egg/). Summary of the public API: `egg_tpm2_initialize`: Start a TPM context. `egg_tpm2_finalize`: End a TPM context. `egg_tpm2_generate_master_password`: Generate and returns an encrypted master password in `GBytes` format. TSS Marshaling, GVariant serialization is used. `egg_tpm2_decrypt_master_password`: Decrypts a master password generated from `egg_tpm2_generate_master_password`. TSS Unmarshaling, GVariant deserialization is used. TPM2 API: TSS Enhanced System API (ESAPI) Proposal: [extend file backend to use TPM2 derived encryption keys](https://gitlab.gnome.org/Teams/Engagement/gsoc-2021/-/issues/13) Related MRs: [#86](https://gitlab.gnome.org/GNOME/libsecret/-/merge_requests/86) Related Issues: [#63](https://gitlab.gnome.org/GNOME/libsecret/-/issues/63)
* Add meson option to set default bash_completion installationDhanuka Warusadura2021-03-211-0/+1
| | | | | | | | location These changes introduce a new meson option to set the default location for bash_completion. This will enable the installation of completion files into the system location.
* Add meson option to override of default bashcompdirDhanuka Warusadura2021-03-211-0/+1
| | | | | These changes introduce a new meson option to disable installation of completion files into the system location.
* meson: add option introspectionKai Kang2020-05-211-0/+1
| | | | | | | Add an option 'introspection' for meson which could control whether build GIR files or not. Signed-off-by: Kai Kang <kai.kang@windriver.com>
* Add build support for MesonNiels De Graef2019-01-191-0/+5
To build with meson, use the following commands: ``` $ meson build $ ninja -C build # in case you want to install $ ninja -C build install ```