> Yes I do:
>
> install(
>     TARGETS GluonCore
>     RUNTIME DESTINATION bin
>     LIBRARY DESTINATION ${LIB_INSTALL_DIR}
>     ARCHIVE DESTINATION ${LIB_INSTALL_DIR}
>     FRAMEWORK DESTINATION ${LIB_INSTALL_DIR}
> )

If all destinations point to the same place you don't need to set them all
explicitely, this should do the same:

install(
    TARGETS GluonCore
    RUNTIME DESTINATION bin
    DESTINATION ${LIB_INSTALL_DIR}
)

Eike
_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to