# HG changeset patch # User smaxx # Date 1292017160 -3600 # Node ID 53ac7d07e67361d60a1f9038cdd2e8e1394f2873 # Parent d2454e4dbd03a65bd622727acb0cc4ae3fab865b Frontend: * Fixed missing icon files on Win32 diff -r d2454e4dbd03 -r 53ac7d07e673 bin/CMakeLists.txt --- a/bin/CMakeLists.txt Thu Dec 09 20:35:28 2010 -0500 +++ b/bin/CMakeLists.txt Fri Dec 10 22:39:20 2010 +0100 @@ -1,7 +1,9 @@ if(WIN32 AND NOT UNIX) file(GLOB DLLs *.dll) + file(GLOB ICOs *.ico) install(FILES ${DLLs} + ${ICOs} DESTINATION bin) endif(WIN32 AND NOT UNIX)