Changeset View
Changeset View
Standalone View
Standalone View
src/examples/ephysics/meson.build
- This file was added.
1 | subdir('themes') | ||||
---|---|---|---|---|---|
2 | | ||||
3 | ephysics_test_src = [ | ||||
4 | 'test.c', | ||||
5 | 'test_bouncing_ball.c', | ||||
6 | 'test_camera_track.c', | ||||
7 | 'test_collision_filter.c', | ||||
8 | 'test_forces.c', | ||||
9 | 'test_rotating_forever.c', | ||||
10 | 'test_slider.c', | ||||
11 | 'test_bouncing_text.c', | ||||
12 | 'test_colliding_balls.c', | ||||
13 | 'test_constraint.c', | ||||
14 | 'test_growing_balls.c', | ||||
15 | 'test_shapes.c', | ||||
16 | 'test_velocity.c', | ||||
17 | 'test_camera.c', | ||||
18 | 'test_collision_detection.c', | ||||
19 | 'test_delete.c', | ||||
20 | 'test_no_gravity.c', | ||||
21 | 'test_sleeping_threshold.c', | ||||
22 | 'ephysics_test.h' | ||||
23 | ] | ||||
24 | | ||||
25 | ephysics_test = executable('ephysics_test', | ||||
26 | ephysics_test_src, | ||||
27 | dependencies: [elementary, ephysics], | ||||
28 | c_args: ['-DPACKAGE_DATA_DIR="'+ meson.current_build_dir()+'"',] | ||||
29 | ) | ||||
30 | | ||||
31 | ephysics_logo = executable('ephysics_logo', | ||||
32 | 'ephysics_logo.c', | ||||
33 | dependencies: [elementary, ephysics], | ||||
34 | c_args: ['-DPACKAGE_DATA_DIR="'+ join_paths(meson.current_source_dir(), 'logo_images') + '"',] | ||||
35 | ) | ||||
36 | |