bin/CMakeLists.txt
author Xeli
Sat, 24 Mar 2012 16:41:35 +0100
changeset 6813 48c3462ddce9
parent 4501 53ac7d07e673
child 7810 da60e6b6baa3
permissions -rw-r--r--
ANDROID and WIN32 can both be set to 1, so have ANDROID take preference

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