test(tests/eos): added test for the new composition version of EOS

note that this test is currently minimal and should be expanded
This commit is contained in:
2025-06-16 15:01:05 -04:00
parent cf25c54cda
commit 9100af3fc5
3 changed files with 38 additions and 4 deletions

View File

@@ -3,6 +3,16 @@ test_sources = [
'eosTest.cpp',
]
dependencies = [
gtest_dep,
eos_dep,
gtest_main,
resourceManager_dep,
config_dep,
composition_dep,
]
foreach test_file : test_sources
exe_name = test_file.split('.')[0]
message('Building test: ' + exe_name)
@@ -11,7 +21,7 @@ foreach test_file : test_sources
test_exe = executable(
exe_name,
test_file,
dependencies: [gtest_dep, eos_dep, gtest_main, resourceManager_dep, config_dep],
dependencies: dependencies,
install_rpath: '@loader_path/../../src' # Ensure runtime library path resolves correctly
)