##// END OF EJS Templates
Add satic method to compute vector of in or not in ranges between...
Add satic method to compute vector of in or not in ranges between two ranges

File last commit:

r772:ae112081ff90
r821:97f935302b90
Show More
meson.build
20 lines | 981 B | text/plain | TextLexer
Added Meson support....
r620
tests = [
Alexandre Leroux
Generates unique name for variable duplicate
r709 [['Common/TestStringUtils.cpp'],'test_string_utils','StringUtils test'],
Set tests output format to teamcity with meson....
r633 [['Data/TestDataSeries.cpp'],'test_data','DataSeries test'],
[['Data/TestOneDimArrayData.cpp'],'test_1d','One Dim Array test'],
[['Data/TestTwoDimArrayData.cpp'],'test_2d','Two Dim Array test'],
[['DataSource/TestDataSourceController.cpp'],'test_data_source','DataSourceController test'],
[['Variable/TestVariableCacheController.cpp'],'test_variable_cache','VariableCacheController test'],
Alexandre Leroux
Makes unit tests for variables sync
r772 [['Variable/TestVariable.cpp'],'test_variable','Variable test'],
[['Variable/TestVariableSync.cpp'],'test_variable_sync','Variable synchronization test']
Added Meson support....
r620 ]
foreach unit_test : tests
test_moc_files = qt5.preprocess(moc_sources : unit_test[0])
test_exe = executable(unit_test[1],unit_test[0] , test_moc_files,
Some Meson improvements, now declare dependency for each lib...
r662 dependencies : [sciqlop_core, qt5test])
Set tests output format to teamcity with meson....
r633 test(unit_test[2], test_exe, args: ['-teamcity', '-o', '@0@.teamcity.txt'.format(unit_test[1])])
Added Meson support....
r620 endforeach