Browse Source

Workaround MSVC linker warning 4099 on AppVeyor.

pull/563/head
triton 10 years ago
parent
commit
15ff04a79e
  1. 4
      src/CppParser/premake4.lua

4
src/CppParser/premake4.lua

@ -24,6 +24,10 @@ project "CppSharp.CppParser" @@ -24,6 +24,10 @@ project "CppSharp.CppParser"
configuration "vs*"
buildoptions { clang_msvc_flags }
if os.getenv("APPVEYOR") then
linkoptions { "/ignore:4099" } -- LNK4099: linking object as if no debug info
end
configuration "*"
files

Loading…
Cancel
Save