Copy the final ptx file to this location once finished building.
(mut self, path: impl AsRef<Path>)
| 266 | |
| 267 | /// Copy the final ptx file to this location once finished building. |
| 268 | pub fn copy_to(mut self, path: impl AsRef<Path>) -> Self { |
| 269 | self.ptx_file_copy_path = Some(path.as_ref().to_path_buf()); |
| 270 | self |
| 271 | } |
| 272 | |
| 273 | /// Indicates to the codegen that the program is being compiled for use in the OptiX hardware raytracing library. |
| 274 | /// This does a couple of things: |
no test coverage detected