bin/CMakeLists.txt
author nemo
Sun, 14 Aug 2011 23:52:45 -0400
changeset 5569 8313952b2811
parent 4501 53ac7d07e673
child 7810 da60e6b6baa3
permissions -rw-r--r--
suggestion of mikade's - delete old mines if the collision array shows signs of filling up. This is kind of an edge case, esp now that array is up to 1024, but should prevent (easiest) way to crash by collision array overflow (endless mines/minestrikes).

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