Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e813aaf

Browse files
committedMay 3, 2021
druntime: Fix test/shared integration test on Windows
1 parent 1bf06fe commit e813aaf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎runtime/DRuntimeIntegrationTests.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if(MULTILIB AND "${TARGET_SYSTEM}" MATCHES "APPLE")
2626
set(druntime_path "${CMAKE_BINARY_DIR}/lib${LIB_SUFFIX}/libdruntime-ldc.a")
2727
endif()
2828
else()
29-
set(shared_druntime_path "$<TARGET_FILE:druntime-ldc${SHARED_LIB_SUFFIX}>")
29+
set(shared_druntime_path "$<TARGET_LINKER_FILE:druntime-ldc${SHARED_LIB_SUFFIX}>")
3030
if(${BUILD_SHARED_LIBS} STREQUAL "ON")
3131
set(druntime_path ${shared_druntime_path})
3232
else()

‎runtime/druntime

0 commit comments

Comments
 (0)
Please sign in to comment.