Skip to content

Commit f71e544

Browse files
committed
[cmake] Fix thinko.
Instead of overwriting all of the paths for the other build configurations with the one that LLVM selected, I was resetting the path for LLVM's build configuration over and over again. = /. This fixes the issue.
1 parent d1e0f51 commit f71e544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/modules/SwiftXcodeSupport.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function(fixup_imported_target_property_for_xcode target property real_build_typ
6464
if ("${c}" STREQUAL "${real_build_type}")
6565
continue()
6666
endif()
67-
set_target_properties(${target} PROPERTIES ${FULL_PROP_NAME} "${PROP_VALUE}")
67+
set_target_properties(${target} PROPERTIES "${property}_${c}" "${PROP_VALUE}")
6868
endforeach()
6969
endfunction()
7070

0 commit comments

Comments
 (0)