blob: b91c1ffd6fc7f30ed06ffa2afbcba9ef10b81df3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# build unit tests for the xtrkcad Windows library
add_executable(utf8test
utf8test.c
../utf8conv.c
)
target_link_libraries(utf8test
${LIBS})
add_test(UTF8ConversionTest utf8test)
|