##// END OF EJS Templates
Refactoring handling of axes properties (1)...
Refactoring handling of axes properties (1) Creates helper used to determine which properties to set for the graph axes, depending on the type of the data hold (properties will be different if it's scalars/vectors or spectrograms)

File last commit:

r896:e0273b51bb7c
r916:b92a8e838f6e
Show More
meson.build
31 lines | 1.4 KiB | 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'],
Alexandre Leroux
Unit tests (2): Refactoring...
r871 [['Data/TestScalarSeries.cpp'],'test_scalar','ScalarSeries test'],
Alexandre Leroux
Unit tests (3)...
r872 [['Data/TestSpectrogramSeries.cpp'],'test_spectrogram','SpectrogramSeries test'],
Alexandre Leroux
Unit tests (2): Refactoring...
r871 [['Data/TestVectorSeries.cpp'],'test_vector','VectorSeries test'],
Set tests output format to teamcity with meson....
r633 [['Data/TestOneDimArrayData.cpp'],'test_1d','One Dim Array test'],
Alexandre Leroux
Unit tests for optional axis
r866 [['Data/TestOptionalAxis.cpp'],'test_optional_axis','OptionalAxis test'],
Set tests output format to teamcity with meson....
r633 [['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
Revert "Disables TestVariableSync"...
r896 [['Variable/TestVariable.cpp'],'test_variable','Variable test'],
[['Variable/TestVariableSync.cpp'],'test_variable_sync','Variable synchronization test']
Added Meson support....
r620 ]
Alexandre Leroux
Fixes meson build
r894 amdatest_sources = [
'Data/DataSeriesBuilders.h',
'Data/DataSeriesBuilders.cpp',
'Data/DataSeriesUtils.h',
'Data/DataSeriesUtils.cpp'
]
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,
Alexandre Leroux
Fixes meson build
r894 dependencies : [sciqlop_core, qt5test],
sources : [amdatest_sources])
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