fluidsynth/test/CMakeLists.txt

18 lines
304 B
Text
Raw Normal View History

2018-04-06 18:21:14 +00:00
project(fluidsynth-test)
ENABLE_TESTING()
include ( FluidUnitTest )
## add unit tests here ##
2018-04-06 20:36:23 +00:00
ADD_FLUID_TEST(test_sample_cache)
ADD_FLUID_TEST(test_sfont_loading)
2018-04-06 18:21:14 +00:00
add_custom_target(check
2018-04-08 08:04:34 +00:00
COMMAND ${CMAKE_CTEST_COMMAND} -C $<CONFIG> --output-on-failure
DEPENDS
test_sample_cache
test_sfont_loading
)