build(libconstants): added working test system

This commit is contained in:
2025-06-21 05:52:43 -04:00
parent c8973f5789
commit df5e92b0e9
6 changed files with 160 additions and 0 deletions

7
tests/meson.build Normal file
View File

@@ -0,0 +1,7 @@
# 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('constants')