bin/CMakeLists.txt
author Xeli
Thu, 01 Sep 2011 14:55:31 +0200
branchhedgeroid
changeset 5671 ba4c3a4c8b09
parent 4501 53ac7d07e673
child 7810 da60e6b6baa3
permissions -rw-r--r--
Check if we need to download and prevent user from reaching the startgame menu because it needs images from the download

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