This website requires JavaScript.
Explore
Help
Sign In
kolan
/
CMake
Watch
1
Star
0
Fork
You've already forked CMake
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
010140311a
CMake
/
Tests
/
RunCMake
/
install
/
DIRECTORY-PATTERN-MESSAGE_N...
2 lines
67 B
CMake
Raw
Normal View
History
Unescape
Escape
install(DIRECTORY): Add MESSAGE_NEVER option to avoid output (#13761) Installing large directories, e.g., the output of a doxygen run, prints one line per file resulting in too much noise in the build output. Add an option to the install(DIRECTORY) command to not print anything upon make install. Extend the RunCMake.install test with cases covering MESSAGE_NEVER behavior of the install(DIRECTORY) command. Suggested-by: Stefan Eilemann <Stefan.Eilemann@epfl.ch>
2014-06-24 19:40:26 +04:00
install
(
DIRECTORY
src
DESTINATION
src
PATTERN
*.txt
MESSAGE_NEVER
)