bin/CMakeLists.txt
author nemo
Tue, 15 Nov 2011 00:43:19 -0500
changeset 6385 e6d30db1e3b0
parent 4501 53ac7d07e673
child 7810 da60e6b6baa3
permissions -rw-r--r--
Fix for issue #291 - this check should probably be in ApplyDamage though

if(WIN32 AND NOT UNIX)
	file(GLOB DLLs *.dll)
	file(GLOB ICOs *.ico)
	
	install(FILES
		${DLLs}
		${ICOs}
		DESTINATION bin)
endif(WIN32 AND NOT UNIX)