bin/CMakeLists.txt
author Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Mon, 29 Dec 2014 12:27:51 +0100
changeset 10726 5e558e193168
parent 8330 aaefa587e277
child 13326 a4e7e62f2c0d
permissions -rw-r--r--
Use ghc return value instead of looking for the stderr, do not throw error when an haskell module throws a build failure, e.g. because of false positives like this one (debian/arm*) "You are using a new version of LLVM that hasn't been tested yet! We will try though..."

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)