From 6183b853f0e5077ba27736f8f3732f215f290c32 Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Wed, 22 Jan 2025 06:57:32 -0500 Subject: [PATCH] fix(dobj_sandbox): removed gtest_main dependency gtest_main was leading to multiple definitions of main in the sandbox test and was not needed. --- tests/dobj_sandbox/meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/dobj_sandbox/meson.build b/tests/dobj_sandbox/meson.build index ef5cdd7..2ce9423 100644 --- a/tests/dobj_sandbox/meson.build +++ b/tests/dobj_sandbox/meson.build @@ -3,8 +3,7 @@ exe_name = test_file.split('.')[0] executable( exe_name, test_file, - dependencies: gtest_dep, include_directories: include_directories('../../src/dobj/public'), link_with: libdobj, # Link the dobj library install_rpath: '@loader_path/../../src' # Ensure runtime library path resolves correctly -) \ No newline at end of file +)