HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
351 B
10 lines
351 B
7 years ago
|
if (HB_BUILD_UTILS)
|
||
|
file (READ "${CMAKE_CURRENT_SOURCE_DIR}/data/Makefile.sources" SOURCES)
|
||
|
extract_make_variable (TESTS ${SOURCES})
|
||
|
foreach (test IN ITEMS ${TESTS})
|
||
|
add_test (NAME ${test}
|
||
|
COMMAND python run-tests.py $<TARGET_FILE:hb-subset> "data/${test}"
|
||
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
||
|
endforeach ()
|
||
|
endif ()
|