The build system now passes compiler directives based on the mode being build. By default data is stored in the source root (and this is encoded into the compiled binary). However, if building in user mode then data is assumed to be at the meson install prefix data directory
19 lines
449 B
Meson
19 lines
449 B
Meson
# Google Test dependency
|
|
gtest_dep = dependency('gtest', main: true, required : true)
|
|
gtest_main = dependency('gtest_main', required: true)
|
|
gtest_nomain_dep = dependency('gtest', main: false, required : true)
|
|
|
|
# Subdirectories for unit and integration tests
|
|
subdir('dobj')
|
|
subdir('const')
|
|
subdir('opatIO')
|
|
subdir('meshIO')
|
|
subdir('config')
|
|
subdir('probe')
|
|
subdir('eos')
|
|
subdir('resource')
|
|
|
|
# Subdirectories for sandbox tests
|
|
subdir('dobj_sandbox')
|
|
|