[PATCH #60] Fixed build warnings about inconsistencies in the output
location for cmpp. The destination was not changed (due to dependencies of batch files on the location) but $(ProjectDir) was used to make the path absolute, which simplifies verifying the correct location.
This commit is contained in:
parent
09021c22ce
commit
194e6d02e9
|
|
@ -1,181 +1,192 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|x64">
|
<ProjectConfiguration Include="Release|x64">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{7C865696-FA10-43AE-A20B-22AE72A165E2}</ProjectGuid>
|
<ProjectGuid>{7C865696-FA10-43AE-A20B-22AE72A165E2}</ProjectGuid>
|
||||||
<RootNamespace>cmpp</RootNamespace>
|
<RootNamespace>cmpp</RootNamespace>
|
||||||
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="Shared">
|
<ImportGroup Label="Shared">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup />
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<OutDir>$(ProjectDir)..\bin\</OutDir>
|
||||||
<ClCompile>
|
</PropertyGroup>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Optimization>Disabled</Optimization>
|
<OutDir>$(ProjectDir)..\bin\</OutDir>
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
</PropertyGroup>
|
||||||
<ExceptionHandling>false</ExceptionHandling>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<OutDir>$(ProjectDir)..\bin\</OutDir>
|
||||||
<AdditionalIncludeDirectories>..\..\..\src\xspice\cmpp</AdditionalIncludeDirectories>
|
</PropertyGroup>
|
||||||
</ClCompile>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<Link>
|
<OutDir>$(ProjectDir)..\bin\</OutDir>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
</PropertyGroup>
|
||||||
<ProfileGuidedDatabase />
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<OutputFile>..\bin\$(TargetName)$(TargetExt)</OutputFile>
|
<ClCompile>
|
||||||
<ProgramDatabaseFile>..\bin\$(TargetName).pdb</ProgramDatabaseFile>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
</Link>
|
<Optimization>Disabled</Optimization>
|
||||||
</ItemDefinitionGroup>
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ExceptionHandling>false</ExceptionHandling>
|
||||||
<ClCompile>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<AdditionalIncludeDirectories>..\..\..\src\xspice\cmpp</AdditionalIncludeDirectories>
|
||||||
<Optimization>MaxSpeed</Optimization>
|
</ClCompile>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<Link>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<ProfileGuidedDatabase />
|
||||||
<ExceptionHandling>false</ExceptionHandling>
|
<OutputFile>$(ProjectDir)..\bin\$(TargetName)$(TargetExt)</OutputFile>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<ProgramDatabaseFile>..\bin\$(TargetName).pdb</ProgramDatabaseFile>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
</Link>
|
||||||
<AdditionalIncludeDirectories>..\..\..\src\xspice\cmpp</AdditionalIncludeDirectories>
|
</ItemDefinitionGroup>
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
</ClCompile>
|
<ClCompile>
|
||||||
<Link>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<Optimization>MaxSpeed</Optimization>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<ProfileGuidedDatabase />
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<OutputFile>..\bin\$(TargetName)$(TargetExt)</OutputFile>
|
<ExceptionHandling>false</ExceptionHandling>
|
||||||
<ProgramDatabaseFile />
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
</Link>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
</ItemDefinitionGroup>
|
<AdditionalIncludeDirectories>..\..\..\src\xspice\cmpp</AdditionalIncludeDirectories>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||||
<ClCompile>
|
</ClCompile>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<Link>
|
||||||
<Optimization>Disabled</Optimization>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<SDLCheck>true</SDLCheck>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<ProfileGuidedDatabase />
|
||||||
<ExceptionHandling>false</ExceptionHandling>
|
<OutputFile>$(ProjectDir)..\bin\$(TargetName)$(TargetExt)</OutputFile>
|
||||||
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
|
<ProgramDatabaseFile />
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
</Link>
|
||||||
<AdditionalIncludeDirectories>..\..\..\src\xspice\cmpp;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
</ItemDefinitionGroup>
|
||||||
</ClCompile>
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<Link>
|
<ClCompile>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<OutputFile>..\bin\$(TargetName)$(TargetExt)</OutputFile>
|
<Optimization>Disabled</Optimization>
|
||||||
</Link>
|
<SDLCheck>true</SDLCheck>
|
||||||
</ItemDefinitionGroup>
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
<ClCompile>
|
<ExceptionHandling>false</ExceptionHandling>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
|
||||||
<Optimization>MaxSpeed</Optimization>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<AdditionalIncludeDirectories>..\..\..\src\xspice\cmpp;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
</ClCompile>
|
||||||
<SDLCheck>true</SDLCheck>
|
<Link>
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<ExceptionHandling>false</ExceptionHandling>
|
<OutputFile>$(ProjectDir)..\bin\$(TargetName)$(TargetExt)</OutputFile>
|
||||||
<CompileAs>CompileAsC</CompileAs>
|
</Link>
|
||||||
<AdditionalIncludeDirectories>..\..\..\src\xspice\cmpp;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
</ItemDefinitionGroup>
|
||||||
</ClCompile>
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<Link>
|
<ClCompile>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<Optimization>MaxSpeed</Optimization>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<OutputFile>..\bin\$(TargetName)$(TargetExt)</OutputFile>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
</Link>
|
<SDLCheck>true</SDLCheck>
|
||||||
</ItemDefinitionGroup>
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<ItemGroup>
|
<ExceptionHandling>false</ExceptionHandling>
|
||||||
<CustomBuild Include="..\..\..\src\xspice\cmpp\ifs_yacc.y;..\..\..\src\xspice\cmpp\mod_yacc.y">
|
<CompileAs>CompileAsC</CompileAs>
|
||||||
<Message>invoke win_bison.exe for %(Identity)</Message>
|
<AdditionalIncludeDirectories>..\..\..\src\xspice\cmpp;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<Command>..\..\..\..\flex-bison\win_bison.exe --output=.\tmp-bison\%(Filename).c --defines=.\tmp-bison\%(Filename).h %(Identity) || exit 1</Command>
|
</ClCompile>
|
||||||
<Outputs>.\tmp-bison\%(Filename).c;.\tmp-bison\%(Filename).h</Outputs>
|
<Link>
|
||||||
</CustomBuild>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<CustomBuild Include="..\..\..\src\xspice\cmpp\ifs_lex.l;..\..\..\src\xspice\cmpp\mod_lex.l">
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<Message>invoke win_flex.exe for %(Identity)</Message>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<Command>..\..\..\..\flex-bison\win_flex.exe --outfile=.\tmp-bison\%(Filename).c --header-file=.\tmp-bison\%(Filename).h %(Identity) || exit 1</Command>
|
<OutputFile>$(ProjectDir)..\bin\$(TargetName)$(TargetExt)</OutputFile>
|
||||||
<Outputs>.\tmp-bison\%(Filename).c;.\tmp-bison\%(Filename).h</Outputs>
|
</Link>
|
||||||
</CustomBuild>
|
</ItemDefinitionGroup>
|
||||||
<None Include="..\src\xspice\icm\objects.inc" />
|
<ItemGroup>
|
||||||
</ItemGroup>
|
<CustomBuild Include="..\..\..\src\xspice\cmpp\ifs_yacc.y;..\..\..\src\xspice\cmpp\mod_yacc.y">
|
||||||
<ItemGroup>
|
<Message>invoke win_bison.exe for %(Identity)</Message>
|
||||||
<ClInclude Include="..\..\..\src\xspice\cmpp\cmpp.h" />
|
<Command>..\..\..\..\flex-bison\win_bison.exe --output=.\tmp-bison\%(Filename).c --defines=.\tmp-bison\%(Filename).h %(Identity) || exit 1</Command>
|
||||||
<ClInclude Include="..\..\..\src\xspice\cmpp\ifs_yacc_y.h" />
|
<Outputs>.\tmp-bison\%(Filename).c;.\tmp-bison\%(Filename).h</Outputs>
|
||||||
<ClInclude Include=".\tmp-bison\ifs_yacc.h" />
|
</CustomBuild>
|
||||||
<ClInclude Include=".\tmp-bison\mod_yacc.h" />
|
<CustomBuild Include="..\..\..\src\xspice\cmpp\ifs_lex.l;..\..\..\src\xspice\cmpp\mod_lex.l">
|
||||||
</ItemGroup>
|
<Message>invoke win_flex.exe for %(Identity)</Message>
|
||||||
<ItemGroup>
|
<Command>..\..\..\..\flex-bison\win_flex.exe --outfile=.\tmp-bison\%(Filename).c --header-file=.\tmp-bison\%(Filename).h %(Identity) || exit 1</Command>
|
||||||
<ClCompile Include="..\..\..\src\xspice\cmpp\main.c" />
|
<Outputs>.\tmp-bison\%(Filename).c;.\tmp-bison\%(Filename).h</Outputs>
|
||||||
<ClCompile Include="..\..\..\src\xspice\cmpp\pp_ifs.c" />
|
</CustomBuild>
|
||||||
<ClCompile Include="..\..\..\src\xspice\cmpp\pp_lst.c" />
|
<None Include="..\src\xspice\icm\objects.inc" />
|
||||||
<ClCompile Include="..\..\..\src\xspice\cmpp\pp_mod.c" />
|
</ItemGroup>
|
||||||
<ClCompile Include="..\..\..\src\xspice\cmpp\read_ifs.c" />
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\src\xspice\cmpp\util.c" />
|
<ClInclude Include="..\..\..\src\xspice\cmpp\cmpp.h" />
|
||||||
<ClCompile Include="..\..\..\src\xspice\cmpp\writ_ifs.c" />
|
<ClInclude Include="..\..\..\src\xspice\cmpp\ifs_yacc_y.h" />
|
||||||
<ClCompile Include=".\tmp-bison\ifs_lex.c" />
|
<ClInclude Include=".\tmp-bison\ifs_yacc.h" />
|
||||||
<ClCompile Include=".\tmp-bison\ifs_yacc.c" />
|
<ClInclude Include=".\tmp-bison\mod_yacc.h" />
|
||||||
<ClCompile Include=".\tmp-bison\mod_lex.c" />
|
</ItemGroup>
|
||||||
<ClCompile Include=".\tmp-bison\mod_yacc.c" />
|
<ItemGroup>
|
||||||
</ItemGroup>
|
<ClCompile Include="..\..\..\src\xspice\cmpp\main.c" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<ClCompile Include="..\..\..\src\xspice\cmpp\pp_ifs.c" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ClCompile Include="..\..\..\src\xspice\cmpp\pp_lst.c" />
|
||||||
</ImportGroup>
|
<ClCompile Include="..\..\..\src\xspice\cmpp\pp_mod.c" />
|
||||||
|
<ClCompile Include="..\..\..\src\xspice\cmpp\read_ifs.c" />
|
||||||
|
<ClCompile Include="..\..\..\src\xspice\cmpp\util.c" />
|
||||||
|
<ClCompile Include="..\..\..\src\xspice\cmpp\writ_ifs.c" />
|
||||||
|
<ClCompile Include=".\tmp-bison\ifs_lex.c" />
|
||||||
|
<ClCompile Include=".\tmp-bison\ifs_yacc.c" />
|
||||||
|
<ClCompile Include=".\tmp-bison\mod_lex.c" />
|
||||||
|
<ClCompile Include=".\tmp-bison\mod_yacc.c" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
Loading…
Reference in New Issue