diff options
author | Damian Hobson-Garcia <dhobsong@igel.co.jp> | 2022-04-05 12:11:38 +0900 |
---|---|---|
committer | Damian Hobson-Garcia <dhobsong@igel.co.jp> | 2022-04-20 10:58:39 +0900 |
commit | e9e5cf1f67a45e4d409dc9e1caa6ce8151579c88 (patch) | |
tree | ce471b907ba5c5bc553e57aef20dda52d00c514c /meson.build | |
parent | 69acc5f3928f0578438cefdd69b39bc05bb0769b (diff) |
Add configuration file loading and parsing
Parse the lease configuration information from a configuration file.
Each lease configuration takes a name and list of connectors to
add to the lease. As long as one connector is found for a given
configuration, the lease will be created.
Bug-AGL: SPEC-3815
Change-Id: Iec4eaf37fba5db17a22e4945de10a06ac94063e4
Signed-off-by: Damian Hobson-Garcia <dhobsong@igel.co.jp>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 7f8adf5..c2c88a6 100644 --- a/meson.build +++ b/meson.build @@ -35,6 +35,7 @@ configuration_inc = include_directories('.') drm_dep = dependency('libdrm', version: '>= 2.4.89') thread_dep = dependency('threads') +toml_dep = dependency('libtoml') enable_tests = get_option('enable-tests') |