bin/CMakeLists.txt
author Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Tue, 07 Jan 2014 11:40:58 +0100
changeset 9949 2aa9cf5badfc
parent 8442 535a00ca0d35
child 13326 a4e7e62f2c0d
permissions -rw-r--r--
Added cast to qreal, avoiding ftbfs due to issue #758 More explanation here https://wiki.debian.org/ArmEabiFixes And on qt-project.org reference website: "Typedef for double on all platforms except for those using CPUs with ARM architectures. On ARM-based platforms, qreal is a typedef for float for performance reasons."

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)