diff options
author | Mike Lothian <[email protected]> | 2018-04-19 10:02:39 +0100 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-04-19 09:04:51 -0700 |
commit | 051fddb4a9e6abb6f2cf9c892e34c8739983c794 (patch) | |
tree | 7eb4247b615d67a05c63dd269688b7f4149b2c71 /src/mesa | |
parent | dffdef67370d0a445884a18c0bc7b20256085398 (diff) |
meson: Build st_tests_common with gtest
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106131
Fixes: 34cb4d0ebc1 ("meson: build tests for gallium mesa state tracker")
Signed-off-by: Mike Lothian <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/state_tracker/tests/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/tests/meson.build b/src/mesa/state_tracker/tests/meson.build index f62039ef1e5..0f845132091 100644 --- a/src/mesa/state_tracker/tests/meson.build +++ b/src/mesa/state_tracker/tests/meson.build @@ -22,7 +22,7 @@ libmesa_st_test_common = static_library( 'mesa_st_test_common', ['st_tests_common.cpp', ir_expression_operation_h], include_directories : inc_common, - dependencies : dep_thread, + dependencies : [dep_thread, idep_gtest], ) test( |