1
if(WIN32 AND NOT UNIX)
2
file(GLOB DLLs *.dll)
3
4
install(FILES
5
${DLLs}
6
DESTINATION bin)
7
endif(WIN32 AND NOT UNIX)