bin/CMakeLists.txt
author nemo
Sun, 04 Jan 2015 00:44:14 -0500
branch0.9.21
changeset 10743 1d16c5414fee
parent 8330 aaefa587e277
child 13326 a4e7e62f2c0d
permissions -rw-r--r--
Intent is to allow filtering by arbitrary flag combinations. This isn't actually working yet. No idea why. It seems it should. Tired though, so will look at it tomorrow.

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)