Displaying 3 results from an estimated 3 matches for "44b2ac08".
2010 Oct 01
0
[LLVMdev] CMake "sudo make install" & headers
Samuel Williams <space.ship.traveller at gmail.com> writes:
> Sorry for the rapid fire replies, but this configuration works for me:
It "works" on the sense that it installs the headers, but removing the
FILES_MATCHING clause changes the semantics of the command: the
subsequent PATTERNs that controls which files are to be installesd
becomes ineffective.
> install(DIRECTORY
2010 Oct 02
1
[LLVMdev] CMake "sudo make install" & headers
...ormation for reproducing it (versions, commands for
> building and installing LLVM starting from the "svn checkout", etc)
>
> [snip]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101002/44b2ac08/attachment.html>
2010 Oct 01
2
[LLVMdev] CMake "sudo make install" & headers
Sorry for the rapid fire replies, but this configuration works for me:
install(DIRECTORY include/
DESTINATION include
# FILES_MATCHING
PATTERN "*.def"
PATTERN "*.h"
PATTERN "*.td"
PATTERN "*.inc"
PATTERN ".svn" EXCLUDE
)
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
DESTINATION include
# FILES_MATCHING
PATTERN