bin/CMakeLists.txt
author sheepluva
Tue, 25 Oct 2011 19:46:59 +0200
changeset 6205 7764cbe4ddd7
parent 4501 53ac7d07e673
child 7810 da60e6b6baa3
permissions -rw-r--r--
remove any thread-safe stuff I introduced since it's not needed as unC0Rr pointed out it's not needed, we are single-threaded (thanks :D) from what I understood this time, Qt is clever enough to sequentialize all events and child destructions instead of spawning threads also some docs/comments

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