Skip to content

Commit d18ed43

Browse files
committed
Platform: correct linked import library name
When linking on a case sensitive file system, the import library must be named with the matching case. The import library is named `ComDlg32.Lib` in the SDK, adjust the case.
1 parent c80477b commit d18ed43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/Platform/winsdk.modulemap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ module WinSDK [system] {
144144
header "commdlg.h"
145145
export *
146146

147-
link "Comdlg32.lib"
147+
link "ComDlg32.Lib"
148148
}
149149
}
150150

0 commit comments

Comments
 (0)