gnome-control-center/tests/interactive-panels/meson.build
Marco Melorio 46021b152d shell: Remove sidebar subpages support from panels
They are now unused and they should not be used anymore in new panels.
2023-09-22 11:45:02 +00:00

39 lines
676 B
Meson

subdir('applications')
###########
# Sources #
###########
sources = files(
'gtp-dynamic-panel.c',
'gtp-static-init.c',
'main.c',
)
##############
# GResources #
##############
sources += gnome.compile_resources(
'test-panels-resources',
'panels.gresource.xml',
source_dir : '.',
c_name : 'test_panels',
export : true,
)
######################
# interactive-panels #
######################
includes = [top_inc]
exe = executable(
'test-interactive-panels',
sources,
include_directories : includes,
dependencies : shell_deps + [libtestshell_dep],
c_args : cflags
)