diff --git a/meson.build b/meson.build index 92f567c..7b3fca2 100644 --- a/meson.build +++ b/meson.build @@ -32,6 +32,14 @@ if get_option('enable_focus_request') == true focus_request = subproject('focus-request') endif +if get_option('enable_pixdecor') == true + pixdecor = subproject('pixdecor') +endif + +if get_option('enable_filters') == true + filters = subproject('filters') +endif + add_project_arguments(['-DWLR_USE_UNSTABLE'], language: ['cpp', 'c']) add_project_arguments(['-DWAYFIRE_PLUGIN'], language: ['cpp', 'c']) add_project_link_arguments(['-rdynamic'], language:'cpp') diff --git a/meson_options.txt b/meson_options.txt index d2a9439..2157b12 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,3 +1,5 @@ option('enable_windecor', type: 'boolean', value: 'false', description: 'Install windecor plugin') option('enable_wayfire_shadows', type: 'boolean', value: 'false', description: 'Install wayfire shadows plugin') option('enable_focus_request', type: 'boolean', value: 'false', description: 'Install wayfire focus-request plugin') +option('enable_pixdecor', type: 'boolean', value: 'false', description: 'Install wayfire pixdecor plugin') +option('enable_filters', type: 'boolean', value: 'false', description: 'Install wayfire filters plugin')