mirror of
https://github.com/brl/mutter.git
synced 2024-11-29 19:40:43 -05:00
fe78467815
Otherwise, it might trigger the actual race condition that Continuous is running into, and access the generated enum headers before they're created.
19 lines
435 B
Meson
19 lines
435 B
Meson
cogl_test_journal_sources = [
|
|
'test-journal.c',
|
|
]
|
|
|
|
cogl_test_journal = executable('test-journal',
|
|
sources: cogl_test_journal_sources,
|
|
c_args: cogl_debug_c_args + [
|
|
'-DCOGL_DISABLE_DEPRECATED',
|
|
'-DTESTS_DATADIR="@0@"'.format(join_paths(cogl_srcdir, 'tests/data')),
|
|
],
|
|
include_directories: cogl_includepath,
|
|
dependencies: [
|
|
cogl_deps,
|
|
libmutter_cogl_dep,
|
|
libmutter_cogl_path_dep,
|
|
],
|
|
install: false,
|
|
)
|