blob: 64f8eab3c68b87b3a0249172b5b53c534d8a9be0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
add_executable(cru_xml_test
ParserTest.cpp
)
target_link_libraries(cru_xml_test PRIVATE cru_xml cru_test_base)
if (WIN32)
add_custom_command(TARGET cru_xml_test POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_RUNTIME_DLLS:cru_xml_test> $<TARGET_FILE_DIR:cru_xml_test>
COMMAND_EXPAND_LISTS
)
endif()
catch_discover_tests(cru_xml_test)
|