bin/CMakeLists.txt
author Wuzzy <almikes@aol.com>
Fri, 06 Oct 2017 20:17:12 +0200
changeset 12667 7b319fac46e2
parent 8330 aaefa587e277
child 13331 a4e7e62f2c0d
permissions -rw-r--r--
Strip invalid PNG profiles from PNGs Bad PNGs caused a few annoying warnings like “libpng warning: iCCP: known incorrect sRGB profile”. Command used: pngcrush -rem gAMA -rem cHRM -rem iCCP -rem sRGB Note that many images have “@2x” in their name, this probably explains why they have been overlooked before.

if(WIN32 AND NOT UNIX)
    file(GLOB DLLs *.dll)
    file(GLOB ICOs *.ico)

    install(FILES
        ${DLLs}
        ${ICOs}
        DESTINATION ${target_library_install_dir})
endif(WIN32 AND NOT UNIX)