bin/CMakeLists.txt
author Bryan Dunsmore <dunsmoreb@gmail.com>
Fri, 30 Nov 2012 23:08:10 -0600
changeset 8162 b97a17bf89ec
parent 7815 1a3a62b0ac11
child 8316 89232b2fa1d6
permissions -rw-r--r--
Move code for Freepascal to separate CMake module.

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