Browse Source

Only try to use .NET framework 4.6 when targeting VS 2015.

This should bring our non-Windows CI builds back to life.

Remove this hack once we update our Premake binary builds.
pull/563/head
triton 10 years ago
parent
commit
ba9c2a19be
  1. 5
      build/premake4.lua

5
build/premake4.lua

@ -20,10 +20,13 @@ solution "CppSharp" @@ -20,10 +20,13 @@ solution "CppSharp"
targetdir (libdir)
debugdir (bindir)
-- startproject "Generator"
if action == "vs2015" then
configuration "vs2015"
framework "4.6"
end
configuration "vs2013"
framework "4.0"

Loading…
Cancel
Save