Skip to content

Commit 6df231c

Browse files
committed
- add missing closing literal quote when passing /DEF to linker MSVC
1 parent b8211f6 commit 6df231c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tools/pmtech.lua

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if platform == "win32" then
99
"dir"
1010
}
1111
linkoptions {
12-
"/DEF:\"pmtech_d.def"
12+
"/DEF:\"pmtech_d.def\""
1313
}
1414
filter "configurations:Release"
1515
prebuildcommands
@@ -18,7 +18,6 @@ if platform == "win32" then
1818
"dir"
1919
}
2020
linkoptions {
21-
"/DEF:\"pmtech.def"
21+
"/DEF:\"pmtech.def\""
2222
}
23-
end
24-
23+
end

0 commit comments

Comments
 (0)