10 lines
362 B
Meson
10 lines
362 B
Meson
test_file = 'testDObject.cpp'
|
|
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
|
|
) |