abebcd235c
Create options "MESSAGE_ALWAYS", "MESSAGE_LAZY", and "MESSAGE_NEVER" to specify whether to print the "Installing" and "Up-to-date" messages. Extend the RunCMake.file test with cases covering these options.
7 lines
348 B
CMake
7 lines
348 B
CMake
file(INSTALL DESTINATION dir MESSAGE_ALWAYS MESSAGE_LAZY)
|
|
file(INSTALL DESTINATION dir MESSAGE_ALWAYS MESSAGE_NEVER)
|
|
file(INSTALL DESTINATION dir MESSAGE_LAZY MESSAGE_NEVER)
|
|
file(INSTALL DESTINATION dir PATTERN *.txt MESSAGE_ALWAYS)
|
|
file(INSTALL DESTINATION dir PATTERN *.txt MESSAGE_LAZY)
|
|
file(INSTALL DESTINATION dir PATTERN *.txt MESSAGE_NEVER)
|