Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use file(COPY ) over file(INSTALL ) so cmake output is reduced (#7616)
Currently it can be hard to see important details in cudf CMake output. The biggest culprit is the usage of `file(INSTALL` which outputs per file the current status on each configuration, as shown below: ``` - Up-to-date: /home/nfs/rmaynard/Work/cudf/cpp/build/cuda-11.0/branch-0.19/release/include/libcxx/include/<file.h> ``` Moving to `file(COPY` has all the same behavior but doesn't have any output. Authors: - Robert Maynard (@robertmaynard) Approvers: - Keith Kraus (@kkraus14) URL: #7616
- Loading branch information