2025-06-21 13:18:38 -04:00
|
|
|
# Google Test dependency
|
2025-12-03 11:38:08 -05:00
|
|
|
#gtest_dep = dependency('gtest', main: true, required : true)
|
|
|
|
|
#gtest_main = dependency('gtest_main', required: true)
|
|
|
|
|
#gtest_nomain_dep = dependency('gtest', main: false, required : true)
|
2025-06-21 13:18:38 -04:00
|
|
|
|
|
|
|
|
# Subdirectories for unit and integration tests
|
2026-06-12 14:30:59 -04:00
|
|
|
if get_option('build_tests') and not get_option('build_python')
|
|
|
|
|
subdir('graphnet_sandbox')
|
|
|
|
|
subdir('extern')
|
|
|
|
|
else
|
|
|
|
|
message('Tests disabled by build options! To enable them build with build_tests = true and build_python=false')
|
|
|
|
|
endif
|