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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClInclude Include="CalculationSequence.h" />
<ClInclude Include="Flowsheet.h" />
<ClInclude Include="LogUpdater.h" />
<ClInclude Include="ModelsManager.h" />
<ClInclude Include="ParametersHolder.h" />
<ClInclude Include="SaveLoadManager.h" />
<ClInclude Include="Simulator.h" />
<ClInclude Include="SimulatorLog.h" />
<ClInclude Include="Topology.h" />
<ClInclude Include="UnitContainer.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="CalculationSequence.cpp" />
<ClCompile Include="Flowsheet.cpp" />
<ClCompile Include="ModelsManager.cpp" />
<ClCompile Include="ParametersHolder.cpp" />
<ClCompile Include="SaveLoadManager.cpp" />
<ClCompile Include="Simulator.cpp" />
<ClCompile Include="SimulatorLog.cpp" />
<ClCompile Include="Topology.cpp" />
<ClCompile Include="UnitContainer.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(SolutionDir)CacheHandler\CacheHandler.vcxproj">
<Project>{55ad8231-176f-4282-88fa-a0a0e71a51c6}</Project>
</ProjectReference>
<ProjectReference Include="$(SolutionDir)Utilities\Utilities.vcxproj">
<Project>{b249af0a-12e6-4099-85f8-928147de5a68}</Project>
</ProjectReference>
<ProjectReference Include="$(SolutionDir)ModelsAPI\ModelsAPI.vcxproj">
<Project>{150781f9-5a9f-4a7f-b835-c4012ba35d8f}</Project>
</ProjectReference>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{A631849A-0B28-4982-9A8D-9E4921A2A84C}</ProjectGuid>
<RootNamespace>SimulatorCore</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
<Import Project="$(SolutionDir)PropertySheets\Common.props" />
<Import Project="$(SolutionDir)PropertySheets\CommonDebug.props" />
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
<Import Project="$(SolutionDir)PropertySheets\Common.props" />
<Import Project="$(SolutionDir)PropertySheets\CommonRelease.props" />
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile />
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile />
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<Lib>
<LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>
</Lib>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
|