bin/CMakeLists.txt
author unc0rr
Mon, 19 Nov 2012 17:41:09 +0400
changeset 8067 34a679e5ca9d
parent 7815 1a3a62b0ac11
child 8316 89232b2fa1d6
permissions -rw-r--r--
Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)

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