diff options
Diffstat (limited to 'src/tests/clutter/interactive/meson.build')
-rw-r--r-- | src/tests/clutter/interactive/meson.build | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/src/tests/clutter/interactive/meson.build b/src/tests/clutter/interactive/meson.build deleted file mode 100644 index e853184ef..000000000 --- a/src/tests/clutter/interactive/meson.build +++ /dev/null @@ -1,74 +0,0 @@ -clutter_tests_interactive_srcdir = meson.current_source_dir() -clutter_tests_interactive_includepath = include_directories('.') - -clutter_tests_interactive_c_args = [ - '-DTESTS_DATADIR="@0@"'.format(clutter_tests_interactive_srcdir), - '-DG_DISABLE_SINGLE_INCLUDES', - '-DGLIB_DISABLE_DEPRECATION_WARNINGS', - '-DCOGL_DISABLE_DEPRECATION_WARNINGS', - '-DCLUTTER_DISABLE_DEPRECATION_WARNINGS', - '-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()), -] -clutter_tests_interactive_c_args += clutter_debug_c_args - -clutter_tests_interactive_link_args = [ - '-Wl,--export-dynamic', -] - -clutter_tests_interactive_test_sources = [ - 'test-events.c', - 'test-actors.c', - 'test-script.c', - 'test-grab.c', - 'test-cogl-shader-glsl.c', - 'test-cogl-tex-tile.c', - 'test-cogl-tex-convert.c', - 'test-cogl-offscreen.c', - 'test-cogl-tex-polygon.c', - 'test-animation.c', - 'test-easing.c', - 'test-binding-pool.c', - 'test-text.c', - 'test-text-field.c', - 'test-cairo-clock.c', - 'test-cairo-flowers.c', - 'test-stage-sizing.c', - 'test-swipe-action.c', - 'test-cogl-point-sprites.c', - 'test-devices.c', - 'test-content.c', - 'test-keyframe-transition.c', - 'test-touch-events.c', - 'test-rotate-zoom.c', - 'test-image.c', -] - -gen_test_unit_names = find_program('meson/gen-test-unit-names.sh') -clutter_interactive_test_unit_names_h = custom_target('gen-test-unit-names', - output: 'test-unit-names.h', - input: clutter_tests_interactive_test_sources, - command: [gen_test_unit_names, '@OUTPUT@', '@INPUT@'], - install: false, -) - -clutter_tests_interactive_sources = [ - 'test-main.c', - clutter_interactive_test_unit_names_h, - clutter_tests_interactive_test_sources, - clutter_test_utils, -] - -executable('test-interactive', - sources: clutter_tests_interactive_sources, - include_directories: [ - clutter_includes, - clutter_tests_includes, - clutter_tests_interactive_includepath, - ], - c_args: clutter_tests_interactive_c_args, - link_args: clutter_tests_interactive_link_args, - dependencies: [ - libmutter_test_dep, - ], - install: false, -) |