| 1 |
sho1get |
12 |
<?xml version="1.0" encoding="utf-8"?> |
| 2 |
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 3 |
|
|
<ItemGroup Label="ProjectConfigurations"> |
| 4 |
|
|
<ProjectConfiguration Include="Debug|Win32"> |
| 5 |
|
|
<Configuration>Debug</Configuration> |
| 6 |
|
|
<Platform>Win32</Platform> |
| 7 |
|
|
</ProjectConfiguration> |
| 8 |
|
|
<ProjectConfiguration Include="Release|Win32"> |
| 9 |
|
|
<Configuration>Release</Configuration> |
| 10 |
|
|
<Platform>Win32</Platform> |
| 11 |
|
|
</ProjectConfiguration> |
| 12 |
|
|
</ItemGroup> |
| 13 |
|
|
<PropertyGroup Label="Globals"> |
| 14 |
|
|
<ProjectName>Mandelbrot</ProjectName> |
| 15 |
|
|
<ProjectGuid>{2E7972F8-B6FA-4022-851C-1993B893F3C5}</ProjectGuid> |
| 16 |
|
|
<RootNamespace>Plugin</RootNamespace> |
| 17 |
|
|
<Keyword>MFCDLLProj</Keyword> |
| 18 |
|
|
</PropertyGroup> |
| 19 |
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
| 20 |
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
| 21 |
|
|
<ConfigurationType>DynamicLibrary</ConfigurationType> |
| 22 |
|
|
<UseOfMfc>Dynamic</UseOfMfc> |
| 23 |
|
|
<CharacterSet>Unicode</CharacterSet> |
| 24 |
|
|
<WholeProgramOptimization>true</WholeProgramOptimization> |
| 25 |
|
|
</PropertyGroup> |
| 26 |
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
| 27 |
|
|
<ConfigurationType>DynamicLibrary</ConfigurationType> |
| 28 |
|
|
<UseOfMfc>Dynamic</UseOfMfc> |
| 29 |
|
|
<CharacterSet>Unicode</CharacterSet> |
| 30 |
|
|
</PropertyGroup> |
| 31 |
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
| 32 |
|
|
<ImportGroup Label="ExtensionSettings"> |
| 33 |
|
|
</ImportGroup> |
| 34 |
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> |
| 35 |
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
| 36 |
|
|
</ImportGroup> |
| 37 |
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> |
| 38 |
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
| 39 |
|
|
</ImportGroup> |
| 40 |
|
|
<PropertyGroup Label="UserMacros" /> |
| 41 |
|
|
<PropertyGroup> |
| 42 |
|
|
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> |
| 43 |
|
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir> |
| 44 |
|
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir> |
| 45 |
|
|
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> |
| 46 |
|
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir> |
| 47 |
|
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir> |
| 48 |
|
|
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> |
| 49 |
|
|
</PropertyGroup> |
| 50 |
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
| 51 |
|
|
<Midl> |
| 52 |
|
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 53 |
|
|
<MkTypLibCompatible>false</MkTypLibCompatible> |
| 54 |
|
|
</Midl> |
| 55 |
|
|
<ClCompile> |
| 56 |
|
|
<Optimization>Disabled</Optimization> |
| 57 |
|
|
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 58 |
|
|
<MinimalRebuild>true</MinimalRebuild> |
| 59 |
|
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> |
| 60 |
|
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |
| 61 |
|
|
<PrecompiledHeader>Use</PrecompiledHeader> |
| 62 |
|
|
<WarningLevel>Level3</WarningLevel> |
| 63 |
|
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat> |
| 64 |
|
|
</ClCompile> |
| 65 |
|
|
<ResourceCompile> |
| 66 |
|
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 67 |
|
|
<Culture>0x0411</Culture> |
| 68 |
|
|
<AdditionalIncludeDirectories>$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
| 69 |
|
|
</ResourceCompile> |
| 70 |
|
|
<Link> |
| 71 |
|
|
<OutputFile>$(OutDir)Plugin\$(ProjectName).dll</OutputFile> |
| 72 |
|
|
<ModuleDefinitionFile>.\Plugin.def</ModuleDefinitionFile> |
| 73 |
|
|
<GenerateDebugInformation>true</GenerateDebugInformation> |
| 74 |
|
|
<SubSystem>Windows</SubSystem> |
| 75 |
|
|
<TargetMachine>MachineX86</TargetMachine> |
| 76 |
|
|
</Link> |
| 77 |
|
|
</ItemDefinitionGroup> |
| 78 |
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
| 79 |
|
|
<Midl> |
| 80 |
|
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 81 |
|
|
<MkTypLibCompatible>false</MkTypLibCompatible> |
| 82 |
|
|
</Midl> |
| 83 |
|
|
<ClCompile> |
| 84 |
|
|
<Optimization>MaxSpeed</Optimization> |
| 85 |
|
|
<IntrinsicFunctions>true</IntrinsicFunctions> |
| 86 |
|
|
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 87 |
|
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |
| 88 |
|
|
<FunctionLevelLinking>true</FunctionLevelLinking> |
| 89 |
|
|
<PrecompiledHeader>Use</PrecompiledHeader> |
| 90 |
|
|
<WarningLevel>Level3</WarningLevel> |
| 91 |
|
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |
| 92 |
|
|
</ClCompile> |
| 93 |
|
|
<ResourceCompile> |
| 94 |
|
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 95 |
|
|
<Culture>0x0411</Culture> |
| 96 |
|
|
<AdditionalIncludeDirectories>$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
| 97 |
|
|
</ResourceCompile> |
| 98 |
|
|
<Link> |
| 99 |
|
|
<OutputFile>$(OutDir)Plugin\$(ProjectName).dll</OutputFile> |
| 100 |
|
|
<ModuleDefinitionFile>.\Plugin.def</ModuleDefinitionFile> |
| 101 |
|
|
<GenerateDebugInformation>true</GenerateDebugInformation> |
| 102 |
|
|
<SubSystem>Windows</SubSystem> |
| 103 |
|
|
<OptimizeReferences>true</OptimizeReferences> |
| 104 |
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
| 105 |
|
|
<TargetMachine>MachineX86</TargetMachine> |
| 106 |
|
|
</Link> |
| 107 |
|
|
</ItemDefinitionGroup> |
| 108 |
|
|
<ItemGroup> |
| 109 |
|
|
<ClCompile Include="DefaultPlugin.cpp" /> |
| 110 |
|
|
<ClCompile Include="Flactale.cpp" /> |
| 111 |
|
|
<ClCompile Include="Mandelbrot.cpp" /> |
| 112 |
|
|
<ClCompile Include="PluginApp.cpp" /> |
| 113 |
|
|
<ClCompile Include="stdafx.cpp"> |
| 114 |
|
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> |
| 115 |
|
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> |
| 116 |
|
|
</ClCompile> |
| 117 |
|
|
</ItemGroup> |
| 118 |
|
|
<ItemGroup> |
| 119 |
|
|
<ClInclude Include="Complex.h" /> |
| 120 |
|
|
<ClInclude Include="DefaultPlugin.h" /> |
| 121 |
|
|
<ClInclude Include="Export.h" /> |
| 122 |
|
|
<ClInclude Include="Flactale.h" /> |
| 123 |
|
|
<ClInclude Include="PluginApp.h" /> |
| 124 |
|
|
<ClInclude Include="Resource.h" /> |
| 125 |
|
|
<ClInclude Include="stdafx.h" /> |
| 126 |
|
|
<ClInclude Include="StringSplit.h" /> |
| 127 |
|
|
<ClInclude Include="System.h" /> |
| 128 |
|
|
<ClInclude Include="targetver.h" /> |
| 129 |
|
|
</ItemGroup> |
| 130 |
|
|
<ItemGroup> |
| 131 |
|
|
<ResourceCompile Include="Plugin.rc" /> |
| 132 |
|
|
</ItemGroup> |
| 133 |
|
|
<ItemGroup> |
| 134 |
|
|
<None Include="res\Plugin.rc2" /> |
| 135 |
|
|
<None Include="ClassDiagram1.cd" /> |
| 136 |
|
|
<None Include="Plugin.def" /> |
| 137 |
|
|
</ItemGroup> |
| 138 |
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
| 139 |
|
|
<ImportGroup Label="ExtensionTargets"> |
| 140 |
|
|
</ImportGroup> |
| 141 |
|
|
</Project> |