Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
Remove test/include/
Browse files Browse the repository at this point in the history
Let's just put header files in test/, no need for a separate subdir.
  • Loading branch information
emersion committed Aug 13, 2021
1 parent 3268387 commit bc0d061
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
File renamed without changes.
5 changes: 1 addition & 4 deletions test/meson.build
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
test_inc = include_directories('include')

# This mock library will replace libdrm
mock_drm_lib = shared_library(
'drm',
files('libdrm_mock.c'),
include_directories: [test_inc],
dependencies: drm.partial_dependency(compile_args: true),
soversion: drm.version().split('.')[0], # TODO: get it from the real dep
)

mock_liftoff = declare_dependency(
link_with: [mock_drm_lib, liftoff_lib],
include_directories: [liftoff_inc, test_inc],
include_directories: [liftoff_inc],
dependencies: drm.partial_dependency(compile_args: true),
)

Expand Down

0 comments on commit bc0d061

Please sign in to comment.