bin/CMakeLists.txt
author sheepluva
Thu, 27 Oct 2011 22:52:22 +0200
changeset 6218 999215ca87d7
parent 4501 53ac7d07e673
child 7810 da60e6b6baa3
permissions -rw-r--r--
actually the those if(...); weren't supposed to be if statements in the first place, since the result is always true at that point of code anyway.

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