bin/CMakeLists.txt
author koda
Wed, 24 Oct 2012 10:18:42 +0100
changeset 7810 da60e6b6baa3
parent 4501 53ac7d07e673
child 7815 1a3a62b0ac11
permissions -rw-r--r--
download SDL dlls if not present

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