1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
AM_CPPFLAGS = -I${top_srcdir}/include -I${top_builddir}/include -I${top_srcdir}/src -I${top_srcdir}/cplusplus
NULL=
check_PROGRAMS = \
test-atomicweight \
test-atomiclevelwidth \
test-refractive_indices \
test-compoundparser \
test-nist-compounds \
test-radionuclides \
test-crystal_diffraction \
test-xrl_functions \
$(NULL)
TESTS = $(check_PROGRAMS)
test_atomicweight_SOURCES = test-atomicweight.cpp
test_atomicweight_LDADD = ../../src/libxrl.la
test_atomiclevelwidth_SOURCES = test-atomiclevelwidth.cpp
test_atomiclevelwidth_LDADD = ../../src/libxrl.la
test_refractive_indices_SOURCES = test-refractive_indices.cpp
test_refractive_indices_LDADD = ../../src/libxrl.la
test_compoundparser_SOURCES = test-compoundparser.cpp
test_compoundparser_LDADD = ../../src/libxrl.la
test_radionuclides_SOURCES = test-radionuclides.cpp
test_radionuclides_LDADD = ../../src/libxrl.la
test_nist_compounds_SOURCES = test-nist-compounds.cpp
test_nist_compounds_LDADD = ../../src/libxrl.la
test_crystal_diffraction_SOURCES = test-crystal_diffraction.cpp
test_crystal_diffraction_LDADD = ../../src/libxrl.la
test_xrl_functions_SOURCES = test-xrl_functions.cpp
test_xrl_functions_LDADD = ../../src/libxrl.la
EXTRA_DIST = meson.build
|