I’m installing huge directories with CMAKE using
install(FILES ....)
I’m wondering if there was any way to hide/skip specific lines, because they’re usually Up-to-date and i’m having large outputs of this hiding relevant informations.
Up-to-date: ....
If not, i’ll find some workarounds with Batch scripts but i’d really like it to be in the CMakeLists.txt
Thank you.
>Solution :
There is CMAKE_INSTALL_MESSAGE variable for that.
Adding set(CMAKE_INSTALL_MESSAGE LAZY) to your CMakeLists.txt would skip the "Up-to-date" messages.
See docs for further information.