Blame win/libsass.vcxproj

Packit Service 7770af
Packit Service 7770af
<Project ToolsVersion="14.0" DefaultTargets="GitVersion;Main" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
Packit Service 7770af
  <PropertyGroup>
Packit Service 7770af
    <LIBSASS_VERSION>[NA]</LIBSASS_VERSION>
Packit Service 7770af
    <LIBSASS_SRC_DIR>..\src</LIBSASS_SRC_DIR>
Packit Service 7770af
    <LIBSASS_HEADERS_DIR>..\src</LIBSASS_HEADERS_DIR>
Packit Service 7770af
    <LIBSASS_INCLUDES_DIR>..\include</LIBSASS_INCLUDES_DIR>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <Target Name="GitVersion">
Packit Service 7770af
    <Exec Command="git -C .. describe --abbrev=4 --dirty --always --tags" LogStandardErrorAsError="true" ContinueOnError="true" ConsoleToMSBuild="true">
Packit Service 7770af
      <Output TaskParameter="ConsoleOutput" PropertyName="LIBSASS_VERSION" />
Packit Service 7770af
    </Exec>
Packit Service 7770af
  </Target>
Packit Service 7770af
  <Target Name="VersionMacros">
Packit Service 7770af
    <ItemGroup>
Packit Service 7770af
      <ClCompile>
Packit Service 7770af
        <PreprocessorDefinitions>%(PreprocessorDefinitions);LIBSASS_VERSION="$(LIBSASS_VERSION)";</PreprocessorDefinitions>
Packit Service 7770af
      </ClCompile>
Packit Service 7770af
    </ItemGroup>
Packit Service 7770af
  </Target>
Packit Service 7770af
  <Target Name="Main">
Packit Service 7770af
    <Message Text="libsass: $(LIBSASS_VERSION)" />
Packit Service 7770af
    <Message Condition="$(LIBSASS_STATIC_LIB) != ''" Text="Building Static LibSass" />
Packit Service 7770af
    <Message Condition="$(LIBSASS_STATIC_LIB) == ''" Text="Building Dynamic LibSass" />
Packit Service 7770af
    <CallTarget Targets="VersionMacros" />
Packit Service 7770af
    <CallTarget Targets="Build" />
Packit Service 7770af
  </Target>
Packit Service 7770af
  <ItemGroup Label="ProjectConfigurations">
Packit Service 7770af
    <ProjectConfiguration Include="Debug|Win32">
Packit Service 7770af
      <Configuration>Debug</Configuration>
Packit Service 7770af
      <Platform>Win32</Platform>
Packit Service 7770af
    </ProjectConfiguration>
Packit Service 7770af
    <ProjectConfiguration Include="Debug|x64">
Packit Service 7770af
      <Configuration>Debug</Configuration>
Packit Service 7770af
      <Platform>x64</Platform>
Packit Service 7770af
    </ProjectConfiguration>
Packit Service 7770af
    <ProjectConfiguration Include="Release|Win32">
Packit Service 7770af
      <Configuration>Release</Configuration>
Packit Service 7770af
      <Platform>Win32</Platform>
Packit Service 7770af
    </ProjectConfiguration>
Packit Service 7770af
    <ProjectConfiguration Include="Release|x64">
Packit Service 7770af
      <Configuration>Release</Configuration>
Packit Service 7770af
      <Platform>x64</Platform>
Packit Service 7770af
    </ProjectConfiguration>
Packit Service 7770af
  </ItemGroup>
Packit Service 7770af
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
Packit Service 7770af
  <PropertyGroup Label="Globals">
Packit Service 7770af
    <ProjectGuid>{E4030474-AFC9-4CC6-BEB6-D846F631502B}</ProjectGuid>
Packit Service 7770af
    <Keyword>Win32Proj</Keyword>
Packit Service 7770af
    <RootNamespace>libsass</RootNamespace>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Label="Common Properties">
Packit Service 7770af
    <TargetName>libsass</TargetName>
Packit Service 7770af
    <CharacterSet>Unicode</CharacterSet>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Condition="$(LIBSASS_STATIC_LIB) == ''">
Packit Service 7770af
    <ConfigurationType>DynamicLibrary</ConfigurationType>
Packit Service 7770af
    <PreprocessorDefinitions>ADD_EXPORTS;$(PreprocessorDefinitions);</PreprocessorDefinitions>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Condition="$(LIBSASS_STATIC_LIB) != ''">
Packit Service 7770af
    <ConfigurationType>StaticLibrary</ConfigurationType>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Label="VS2013 toolset selection" Condition="'$(VisualStudioVersion)' == '12.0'">
Packit Service 7770af
    <PlatformToolset>v120</PlatformToolset>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Label="VS2015 toolset selection" Condition="'$(VisualStudioVersion)' == '14.0'">
Packit Service 7770af
    <PlatformToolset>v140</PlatformToolset>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
Packit Service 7770af
    <UseDebugLibraries>true</UseDebugLibraries>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
Packit Service 7770af
    <UseDebugLibraries>true</UseDebugLibraries>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
Packit Service 7770af
    <UseDebugLibraries>false</UseDebugLibraries>
Packit Service 7770af
    <WholeProgramOptimization>true</WholeProgramOptimization>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
Packit Service 7770af
    <UseDebugLibraries>false</UseDebugLibraries>
Packit Service 7770af
    <WholeProgramOptimization>true</WholeProgramOptimization>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
Packit Service 7770af
  <ImportGroup Label="ExtensionSettings">
Packit Service 7770af
  </ImportGroup>
Packit Service 7770af
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
Packit Service 7770af
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Packit Service 7770af
  </ImportGroup>
Packit Service 7770af
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
Packit Service 7770af
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Packit Service 7770af
  </ImportGroup>
Packit Service 7770af
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
Packit Service 7770af
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Packit Service 7770af
  </ImportGroup>
Packit Service 7770af
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
Packit Service 7770af
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Packit Service 7770af
  </ImportGroup>
Packit Service 7770af
  <PropertyGroup Label="UserMacros" />
Packit Service 7770af
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
Packit Service 7770af
    <LinkIncremental>true</LinkIncremental>
Packit Service 7770af
    <OutDir>$(SolutionDir)bin\Debug\</OutDir>
Packit Service 7770af
    <IntDir>$(SolutionDir)bin\Debug\obj\</IntDir>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
Packit Service 7770af
    <LinkIncremental>true</LinkIncremental>
Packit Service 7770af
    <OutDir>$(SolutionDir)bin\Debug\</OutDir>
Packit Service 7770af
    <IntDir>$(SolutionDir)bin\Debug\obj\</IntDir>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
Packit Service 7770af
    <LinkIncremental>false</LinkIncremental>
Packit Service 7770af
    <OutDir>$(SolutionDir)bin\</OutDir>
Packit Service 7770af
    <IntDir>$(SolutionDir)bin\obj\</IntDir>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Packit Service 7770af
    <LinkIncremental>false</LinkIncremental>
Packit Service 7770af
    <OutDir>$(SolutionDir)bin\</OutDir>
Packit Service 7770af
    <IntDir>$(SolutionDir)bin\obj\</IntDir>
Packit Service 7770af
  </PropertyGroup>
Packit Service 7770af
  <ItemDefinitionGroup>
Packit Service 7770af
    <ClCompile>
Packit Service 7770af
      <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
Packit Service 7770af
    </ClCompile>
Packit Service 7770af
  </ItemDefinitionGroup>
Packit Service 7770af
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
Packit Service 7770af
    <ClCompile>
Packit Service 7770af
      <PrecompiledHeader>
Packit Service 7770af
      </PrecompiledHeader>
Packit Service 7770af
      <WarningLevel>Level3</WarningLevel>
Packit Service 7770af
      <Optimization>Disabled</Optimization>
Packit Service 7770af
      <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);</PreprocessorDefinitions>
Packit Service 7770af
    </ClCompile>
Packit Service 7770af
    <Link>
Packit Service 7770af
      <SubSystem>Console</SubSystem>
Packit Service 7770af
      <GenerateDebugInformation>true</GenerateDebugInformation>
Packit Service 7770af
    </Link>
Packit Service 7770af
  </ItemDefinitionGroup>
Packit Service 7770af
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
Packit Service 7770af
    <ClCompile>
Packit Service 7770af
      <PrecompiledHeader>
Packit Service 7770af
      </PrecompiledHeader>
Packit Service 7770af
      <WarningLevel>Level3</WarningLevel>
Packit Service 7770af
      <Optimization>Disabled</Optimization>
Packit Service 7770af
      <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);</PreprocessorDefinitions>
Packit Service 7770af
    </ClCompile>
Packit Service 7770af
    <Link>
Packit Service 7770af
      <SubSystem>Console</SubSystem>
Packit Service 7770af
      <GenerateDebugInformation>true</GenerateDebugInformation>
Packit Service 7770af
    </Link>
Packit Service 7770af
  </ItemDefinitionGroup>
Packit Service 7770af
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
Packit Service 7770af
    <ClCompile>
Packit Service 7770af
      <WarningLevel>Level3</WarningLevel>
Packit Service 7770af
      <PrecompiledHeader>
Packit Service 7770af
      </PrecompiledHeader>
Packit Service 7770af
      <Optimization>MaxSpeed</Optimization>
Packit Service 7770af
      <FunctionLevelLinking>true</FunctionLevelLinking>
Packit Service 7770af
      <IntrinsicFunctions>true</IntrinsicFunctions>
Packit Service 7770af
      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);</PreprocessorDefinitions>
Packit Service 7770af
    </ClCompile>
Packit Service 7770af
    <Link>
Packit Service 7770af
      <SubSystem>Console</SubSystem>
Packit Service 7770af
      <GenerateDebugInformation>true</GenerateDebugInformation>
Packit Service 7770af
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
Packit Service 7770af
      <OptimizeReferences>true</OptimizeReferences>
Packit Service 7770af
    </Link>
Packit Service 7770af
  </ItemDefinitionGroup>
Packit Service 7770af
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Packit Service 7770af
    <ClCompile>
Packit Service 7770af
      <WarningLevel>Level3</WarningLevel>
Packit Service 7770af
      <PrecompiledHeader>
Packit Service 7770af
      </PrecompiledHeader>
Packit Service 7770af
      <Optimization>MaxSpeed</Optimization>
Packit Service 7770af
      <FunctionLevelLinking>true</FunctionLevelLinking>
Packit Service 7770af
      <IntrinsicFunctions>true</IntrinsicFunctions>
Packit Service 7770af
      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);</PreprocessorDefinitions>
Packit Service 7770af
    </ClCompile>
Packit Service 7770af
    <Link>
Packit Service 7770af
      <SubSystem>Console</SubSystem>
Packit Service 7770af
      <GenerateDebugInformation>true</GenerateDebugInformation>
Packit Service 7770af
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
Packit Service 7770af
      <OptimizeReferences>true</OptimizeReferences>
Packit Service 7770af
    </Link>
Packit Service 7770af
  </ItemDefinitionGroup>
Packit Service 7770af
  <Import Project="libsass.targets" />
Packit Service 7770af
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
Packit Service 7770af
  <ImportGroup Label="ExtensionTargets">
Packit Service 7770af
  </ImportGroup>
Packit Service 7770af
</Project>