Browse Source

Fixed CppParser build guard so it works in VS/Windows.

pull/227/merge
triton 11 years ago
parent
commit
b14d527106
  1. 2
      src/CppParser/premake4.lua

2
src/CppParser/premake4.lua

@ -5,7 +5,7 @@ clang_msvc_flags = @@ -5,7 +5,7 @@ clang_msvc_flags =
"/wd4251"
}
if not string.starts(action, "vs") and not os.is_windows() then
if not (string.starts(action, "vs") and not os.is_windows()) then
project "CppSharp.CppParser"

Loading…
Cancel
Save