Skip to content
Snippets Groups Projects
Commit f1ad627c authored by Simon McVittie's avatar Simon McVittie
Browse files

tests: Use common include directories


All of these need to include _steam-runtime-tools-config.h, which means
they need the equivalent of Autotools -I${top_builddir}. This is done
automatically when building steam-runtime-tools on its own, but not
when building it as a subproject.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 6a6841c4
No related branches found
No related tags found
No related merge requests found
Pipeline #2143 passed
......@@ -180,6 +180,7 @@ executable(
executable(
'mock-software-check-gl',
join_paths('..', 'helpers', 'true.c'),
include_directories : project_include_dirs,
install: true,
install_dir: tests_dir
)
......@@ -235,6 +236,7 @@ executable(
executable(
'mock-good-check-gl',
join_paths('..', 'helpers', 'true.c'),
include_directories : project_include_dirs,
install: true,
install_dir: tests_dir
)
......@@ -242,6 +244,7 @@ executable(
executable(
'mock-bad-check-gl',
'mock-bad-check-vulkan.c',
include_directories : project_include_dirs,
install: true,
install_dir: tests_dir
)
......@@ -249,6 +252,7 @@ executable(
executable(
'mock-mixed-wflinfo',
'mock-good-wflinfo.c',
include_directories : project_include_dirs,
install: true,
install_dir: tests_dir
)
......@@ -256,6 +260,7 @@ executable(
executable(
'mock-mixed-check-gl',
'mock-bad-check-vulkan.c',
include_directories : project_include_dirs,
install: true,
install_dir: tests_dir
)
......@@ -263,6 +268,7 @@ executable(
executable(
'mock-sigusr-wflinfo',
'mock-sigusr-wflinfo.c',
include_directories : project_include_dirs,
install: true,
install_dir: tests_dir
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment