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