aboutsummaryrefslogtreecommitdiff
path: root/test/platform/CMakeLists.txt
blob: 37bd7e4a038e857a93833283b9876baaff000b57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
add_executable(CruPlatformBaseTest
	ColorTest.cpp
	MatrixTest.cpp
)
target_link_libraries(CruPlatformBaseTest PRIVATE CruPlatformBase cru_test_base)

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

catch_discover_tests(CruPlatformBaseTest)