aboutsummaryrefslogtreecommitdiff
path: root/test/win/graphics/direct/CMakeLists.txt
blob: c2eb06305528e2f620a785a70474b7ce88ba5e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
add_executable(CruPlatformGraphicsDirect2dTest
	ConvertTest.cpp
)
target_link_libraries(CruPlatformGraphicsDirect2dTest PRIVATE CruPlatformGraphicsDirect2d cru_test_base)

if (WIN32)
	add_custom_command(TARGET CruPlatformGraphicsDirect2dTest POST_BUILD
	COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_RUNTIME_DLLS:CruPlatformGraphicsDirect2dTest> $<TARGET_FILE_DIR:CruPlatformGraphicsDirect2dTest>
	COMMAND_EXPAND_LISTS
	)
endif()

catch_discover_tests(CruPlatformGraphicsDirect2dTest)