diff options
| author | ruki <[email protected]> | 2016-09-19 14:58:47 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-09-19 14:58:47 +0800 |
| commit | 38002b01f85d2c58de18aed9c8ea16635f2357e5 (patch) | |
| tree | 9426d77d35781efac7d736975c594cd2cf5e3cb8 /xmake/plugins/project | |
| parent | 4e929cf70abf4e6ccb0b967925e8f72b48e80e8a (diff) | |
fix tab space
Diffstat (limited to 'xmake/plugins/project')
| -rwxr-xr-x | xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua | 10 | ||||
| -rwxr-xr-x | xmake/plugins/project/vstudio/vs2010.lua | 2 | ||||
| -rwxr-xr-x | xmake/plugins/project/vstudio/vs2012.lua | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua index c74cc7c81..36a68f781 100755 --- a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua +++ b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua @@ -164,7 +164,7 @@ function _make_configurations(vcxprojfile, vsinfo, target, vcxprojdir) vcxprojfile:enter("<PropertyGroup Label=\"Globals\">") vcxprojfile:print("<ProjectGuid>{%s}</ProjectGuid>", os.uuid(targetname)) vcxprojfile:print("<RootNamespace>%s</RootNamespace>", targetname) - vcxprojfile:leave("</PropertyGroup>") + vcxprojfile:leave("</PropertyGroup>") -- import Microsoft.Cpp.Default.props vcxprojfile:print("<Import Project=\"%$(VCTargetsPath)\\Microsoft.Cpp.Default.props\" />") @@ -174,19 +174,19 @@ function _make_configurations(vcxprojfile, vsinfo, target, vcxprojdir) vcxprojfile:print("<ConfigurationType>%s</ConfigurationType>", assert(configuration_types[target:get("kind")])) vcxprojfile:print("<PlatformToolset>v%s0</PlatformToolset>", assert(versions["vs" .. vsinfo.vstudio_version])) vcxprojfile:print("<CharacterSet>MultiByte</CharacterSet>") - vcxprojfile:leave("</PropertyGroup>") + vcxprojfile:leave("</PropertyGroup>") -- import Microsoft.Cpp.props vcxprojfile:print("<Import Project=\"%$(VCTargetsPath)\\Microsoft.Cpp.props\" />") -- make ExtensionSettings vcxprojfile:enter("<ImportGroup Label=\"ExtensionSettings\">") - vcxprojfile:leave("</ImportGroup>") + vcxprojfile:leave("</ImportGroup>") -- make PropertySheets vcxprojfile:enter("<ImportGroup Condition=\"\'%$(Configuration)|%$(Platform)\'==\'$(mode)|Win32\'\" Label=\"PropertySheets\">") vcxprojfile:print("<Import Project=\"%$(UserRootDir)\\Microsoft.Cpp.%$(Platform).user.props\" Condition=\"exists(\'%$(UserRootDir)\\Microsoft.Cpp.%$(Platform).user.props\')\" Label=\"LocalAppDataPlatform\" />") - vcxprojfile:leave("</ImportGroup>") + vcxprojfile:leave("</ImportGroup>") -- make UserMacros vcxprojfile:print("<PropertyGroup Label=\"UserMacros\" />") @@ -198,7 +198,7 @@ function _make_configurations(vcxprojfile, vsinfo, target, vcxprojdir) if target:get("kind") == "binary" then vcxprojfile:print("<LinkIncremental>true</LinkIncremental>") end - vcxprojfile:leave("</PropertyGroup>") + vcxprojfile:leave("</PropertyGroup>") end -- make ItemDefinitionGroup diff --git a/xmake/plugins/project/vstudio/vs2010.lua b/xmake/plugins/project/vstudio/vs2010.lua index 0f40134e0..c63cd1f25 100755 --- a/xmake/plugins/project/vstudio/vs2010.lua +++ b/xmake/plugins/project/vstudio/vs2010.lua @@ -30,7 +30,7 @@ function make(outputdir) local vsinfo = { vstudio_version = "2010" - , filters_version = "4.0" + , filters_version = "4.0" , solution_version = "11" } diff --git a/xmake/plugins/project/vstudio/vs2012.lua b/xmake/plugins/project/vstudio/vs2012.lua index 00932c407..76af78033 100755 --- a/xmake/plugins/project/vstudio/vs2012.lua +++ b/xmake/plugins/project/vstudio/vs2012.lua @@ -30,7 +30,7 @@ function make(outputdir) local vsinfo = { vstudio_version = "2012" - , filters_version = "4.0" + , filters_version = "4.0" , solution_version = "12" } |
