We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 353a5fd + f11280b commit 2ec3de4Copy full SHA for 2ec3de4
amd/hipcc/hipcc-backward-compat.cmake
@@ -39,7 +39,11 @@ endfunction()
39
# Create symlink to binaries
40
create_binary_symlink()
41
# TODO: Following has to modified if component based installation is required
42
-install(DIRECTORY ${HIPCC_WRAPPER_BIN_DIR} DESTINATION hip
43
- FILES_MATCHING
44
- PATTERN "*"
45
- PATTERN ${exclusion_pattern} EXCLUDE )
+if (NOT WIN32)
+ install(DIRECTORY ${HIPCC_WRAPPER_BIN_DIR} DESTINATION hip)
+else()
+ install(DIRECTORY ${HIPCC_WRAPPER_BIN_DIR} DESTINATION hip
46
+ FILES_MATCHING
47
+ PATTERN "*"
48
+ PATTERN "*.bat" EXCLUDE )
49
+endif()
0 commit comments