Swiftgram/test/meson.build
subhransu mohanty 7501ff54a6 lottie-player : Initial draft for lottie-player library
Change-Id: I8019e13863ef635fc011f0e7b82c692eaa01201d
2018-07-11 10:51:01 +00:00

21 lines
562 B
Meson

test_sources_util = ['ssgtestsuite.cpp',
'testsgregion.cpp'
]
test_sources_ftraster = ['testftraster.cpp'
]
test_sources =[]
test_sources += test_sources_util
test_sources += test_sources_ftraster
test_dep = dependency('gtest')
ssg_utest = executable('testexe',
test_sources,
include_directories : inc,
link_with : lottie_player_lib_version,
dependencies : test_dep)
test('ssgsuite test', ssg_utest)