-
Notifications
You must be signed in to change notification settings - Fork 2
/
SolarizedVS.vcxproj
59 lines (59 loc) · 3.12 KB
/
SolarizedVS.vcxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Dark|Win32">
<Configuration>Dark</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Light|Win32">
<Configuration>Light</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClInclude Include="Colors.h" />
<ClInclude Include="Dark.h" />
<ClInclude Include="Light.h" />
<ClInclude Include="Theme.h" />
</ItemGroup>
<ItemGroup>
<None Include="Source.vstheme">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{D1A9B6C7-EDC5-4AD7-B890-096187A365EE}</ProjectGuid>
<Keyword>MakeFileProj</Keyword>
<ProjectName>SolarizedVS</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Dark|Win32'">
<PlatformToolset>v110</PlatformToolset>
<ConfigurationType>Makefile</ConfigurationType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Light|Win32'" Label="Configuration">
<PlatformToolset>v110</PlatformToolset>
<ConfigurationType>Makefile</ConfigurationType>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Dark|Win32'">
<NMakeBuildCommandLine>"$(VCInstallDir)bin/cl.exe" /EP /FI "$(ProjectDir)$(Configuration).h" "$(ProjectDir)Source.vstheme" > "$(OutDir)Solarized-$(Configuration).vstheme"</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(VCInstallDir)bin/cl.exe" /EP /FI "$(ProjectDir)$(Configuration).h" "$(ProjectDir)Source.vstheme" > "$(OutDir)Solarized-$(Configuration).vstheme"</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>del "$(OutDir)Solarized-$(Configuration).vstheme"</NMakeCleanCommandLine>
<NMakeOutput>$(OutDir)Solarized-$(Configuration).vstheme</NMakeOutput>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Light|Win32'">
<NMakeBuildCommandLine>"$(VCInstallDir)bin/cl.exe" /EP /FI "$(ProjectDir)$(Configuration).h" "$(ProjectDir)Source.vstheme" > "$(OutDir)Solarized-$(Configuration).vstheme"</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>"$(VCInstallDir)bin/cl.exe" /EP /FI "$(ProjectDir)$(Configuration).h" "$(ProjectDir)Source.vstheme" > "$(OutDir)Solarized-$(Configuration).vstheme"</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>del "$(OutDir)Solarized-$(Configuration).vstheme"</NMakeCleanCommandLine>
<NMakeOutput>$(OutDir)Solarized-$(Configuration).vstheme</NMakeOutput>
</PropertyGroup>
<ItemDefinitionGroup>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>