Skip to content

Commit 15ff04a

Browse files
committed
Workaround MSVC linker warning 4099 on AppVeyor.
1 parent e81fb9e commit 15ff04a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/CppParser/premake4.lua

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ project "CppSharp.CppParser"
2424
configuration "vs*"
2525
buildoptions { clang_msvc_flags }
2626

27+
if os.getenv("APPVEYOR") then
28+
linkoptions { "/ignore:4099" } -- LNK4099: linking object as if no debug info
29+
end
30+
2731
configuration "*"
2832

2933
files

0 commit comments

Comments
 (0)