blob: b6d2bc5680c9ec8da70f659283cb6f4a666a4824 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# build unit tests for the xtrkcad library
add_executable(dxfformattest
dxfformattest.c
../dxfformat.c
)
target_link_libraries(dxfformattest
dynstring
${LIBS})
add_test(DXFOutputTest dxfformattest)
|