aboutsummaryrefslogtreecommitdiff
path: root/samples/compiler/cmake/windows/SampleBase-AT.cmake
blob: 46bcf2ec6792f6e4e07368846c9a8a4f8ac57b76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# Copy the dlls from the deps

ADD_CUSTOM_COMMAND(TARGET SampleBase POST_BUILD
	COMMAND ${CMAKE_COMMAND} -E copy_if_different 
	${PHYSXSDK_DLLS} ${NVTOOLSEXT_DLL} ${SHADOW_LIB_DLL} ${HBAO_PLUS_DLL} ${D3DCOMPILER_DLL}
	$<$<CONFIG:debug>:${BL_EXE_OUTPUT_DIR}/debug>
	$<$<CONFIG:checked>:${BL_EXE_OUTPUT_DIR}/checked> 
	$<$<CONFIG:profile>:${BL_EXE_OUTPUT_DIR}/profile>
	$<$<CONFIG:release>:${BL_EXE_OUTPUT_DIR}/release>
)