Added a new boolean CMake flag, LLVM_INSTALL_UTILS. When set,
the 'install' target will include in the bin directory the
utils binaries - e.g. FileCheck. This mirrors the autoconfig
behavior.
Details
Details
- Reviewers
dschuff beanz jfb - Commits
- rGef9928e35714: CMake: enable installing utils
Diff Detail
Diff Detail
Event Timeline
| cmake/modules/AddLLVM.cmake | ||
|---|---|---|
| 551 | I would add COMPONENT arguments here to set the install component, and I would add custom install targets. For an example see: AddLLVM.cmake:416-424. | |
| cmake/modules/AddLLVM.cmake | ||
|---|---|---|
| 554 | Sorry to nitpick, but you want to wrap this in: if (NOT CMAKE_CONFIGURATION_TYPES) That way you won't be creating an unwieldy number of extra targets for IDE users. | |
I would add COMPONENT arguments here to set the install component, and I would add custom install targets.
For an example see: AddLLVM.cmake:416-424.