diff --git a/scripts/bgfx.lua b/scripts/bgfx.lua index 82fcad846..8b67642d9 100644 --- a/scripts/bgfx.lua +++ b/scripts/bgfx.lua @@ -62,6 +62,13 @@ function bgfxProject(_name, _kind, _defines) "$(DXSDK_DIR)/include", } + if (_OPTIONS["vs"] == "vs2012-xp") or (_OPTIONS["vs"] == "vs2013-xp") then + configuration { "vs201*" } + includedirs { + "$(DXSDK_DIR)/include", + } + end + configuration { "winphone8*"} linkoptions { "/ignore:4264" -- LNK4264: archiving object file compiled with /ZW into a static library; note that when authoring Windows Runtime types it is not recommended to link with a static library that contains Windows Runtime metadata diff --git a/scripts/example-common.lua b/scripts/example-common.lua index e09833781..6ab71ab96 100644 --- a/scripts/example-common.lua +++ b/scripts/example-common.lua @@ -35,7 +35,12 @@ project ("example-common") includedirs { "$(DXSDK_DIR)/include", } - + if (_OPTIONS["vs"] == "vs2012-xp") or (_OPTIONS["vs"] == "vs2013-xp") then + configuration { "vs201*" } + includedirs { + "$(DXSDK_DIR)/include", + } + end configuration { "winphone8*"} linkoptions {