File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -113,13 +113,13 @@ kotlin {
113113 val mingwHome = findMingwHome()
114114 println (" Found mingwHome at $mingwHome " )
115115 val defPath = layout.buildDirectory.file(" cinterop/winver.def" )
116- println (" Writing winver.def to $defPath " )
116+ println (" Writing winver.def to ${ defPath.get().asFile.absolutePath} " )
117117
118118 // Dynamically construct def file because of dynamic mingw paths
119119 val defFileTask by tasks.registering {
120120 outputs.file(defPath)
121121
122- val mingwLibs = Paths .get(mingwHome, " lib" ).toString().replace(" \\ " , " \\\\ " ) // Windows path shenanigans
122+ val mingwLibs = Paths .get(mingwHome, " lib" ).toString()// .replace("\\", "\\\\") // Windows path shenanigans
123123 println (" Using MinGW libs folder: $mingwLibs " )
124124
125125 doLast {
You can’t perform that action at this time.
0 commit comments