Skip to content

Commit

Permalink
Merge pull request #931 from CreativeAssembly/master
Browse files Browse the repository at this point in the history
Added synchronous and C-Throw to VS projects.
  • Loading branch information
tvandijck authored Oct 19, 2017
2 parents 3222e3b + 26558d1 commit 66362c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions modules/vstudio/vs2010_vcxproj.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1475,6 +1475,10 @@
m.element("ExceptionHandling", condition, "false")
elseif cfg.exceptionhandling == "SEH" then
m.element("ExceptionHandling", condition, "Async")
elseif cfg.exceptionhandling == "On" then
m.element("ExceptionHandling", condition, "Sync")
elseif cfg.exceptionhandling == "CThrow" then
m.element("ExceptionHandling", condition, "SyncCThrow")
end
end

Expand Down
3 changes: 2 additions & 1 deletion src/_premake_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,8 @@
"Default",
"On",
"Off",
"SEH"
"SEH",
"CThrow",
},
}

Expand Down

0 comments on commit 66362c0

Please sign in to comment.