1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="15.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 <ProjectConfiguration Include="Debug|x64"> 13 <Configuration>Debug</Configuration> 14 <Platform>x64</Platform> 15 </ProjectConfiguration> 16 <ProjectConfiguration Include="Release|x64"> 17 <Configuration>Release</Configuration> 18 <Platform>x64</Platform> 19 </ProjectConfiguration> 20 </ItemGroup> 21 <PropertyGroup Label="Globals"> 22 <VCProjectVersion>15.0</VCProjectVersion> 23 <ProjectGuid>{80E5F29C-93FB-4C84-A818-D2B8263C7CA1}</ProjectGuid> 24 <Keyword>ManagedCProj</Keyword> 25 <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion> 26 </PropertyGroup> 27 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 29 <ConfigurationType>DynamicLibrary</ConfigurationType> 30 <UseDebugLibraries>true</UseDebugLibraries> 31 <PlatformToolset>v141</PlatformToolset> 32 <CLRSupport>true</CLRSupport> 33 </PropertyGroup> 34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 35 <ConfigurationType>DynamicLibrary</ConfigurationType> 36 <UseDebugLibraries>false</UseDebugLibraries> 37 <PlatformToolset>v141</PlatformToolset> 38 <CLRSupport>true</CLRSupport> 39 </PropertyGroup> 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 41 <ConfigurationType>DynamicLibrary</ConfigurationType> 42 <UseDebugLibraries>true</UseDebugLibraries> 43 <PlatformToolset>v141</PlatformToolset> 44 <CLRSupport>true</CLRSupport> 45 </PropertyGroup> 46 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 47 <ConfigurationType>DynamicLibrary</ConfigurationType> 48 <UseDebugLibraries>false</UseDebugLibraries> 49 <PlatformToolset>v141</PlatformToolset> 50 <CLRSupport>true</CLRSupport> 51 </PropertyGroup> 52 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 53 <ImportGroup Label="ExtensionSettings"> 54 </ImportGroup> 55 <ImportGroup Label="Shared"> 56 </ImportGroup> 57 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 58 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 59 </ImportGroup> 60 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 61 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 62 </ImportGroup> 63 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 64 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 65 </ImportGroup> 66 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 67 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 68 </ImportGroup> 69 <PropertyGroup Label="UserMacros" /> 70 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 71 <LinkIncremental>true</LinkIncremental> 72 </PropertyGroup> 73 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 74 <LinkIncremental>true</LinkIncremental> 75 </PropertyGroup> 76 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 77 <ClCompile> 78 <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;BOOST_MATH_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 79 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 80 <WarningLevel>Level3</WarningLevel> 81 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 82 <Optimization>Disabled</Optimization> 83 <AdditionalIncludeDirectories>../../../..</AdditionalIncludeDirectories> 84 <PrecompiledHeader>Use</PrecompiledHeader> 85 </ClCompile> 86 <Link> 87 <TargetMachine>MachineX86</TargetMachine> 88 <GenerateDebugInformation>true</GenerateDebugInformation> 89 <SubSystem>Windows</SubSystem> 90 </Link> 91 </ItemDefinitionGroup> 92 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 93 <ClCompile> 94 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;BOOST_MATH_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 95 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 96 <WarningLevel>Level3</WarningLevel> 97 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 98 <AdditionalIncludeDirectories>../../../..</AdditionalIncludeDirectories> 99 <PrecompiledHeader>Use</PrecompiledHeader> 100 </ClCompile> 101 <Link> 102 <TargetMachine>MachineX86</TargetMachine> 103 <GenerateDebugInformation>true</GenerateDebugInformation> 104 <SubSystem>Windows</SubSystem> 105 <EnableCOMDATFolding>true</EnableCOMDATFolding> 106 <OptimizeReferences>true</OptimizeReferences> 107 </Link> 108 </ItemDefinitionGroup> 109 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 110 <ClCompile> 111 <AdditionalIncludeDirectories>../../../..</AdditionalIncludeDirectories> 112 <PrecompiledHeader>Use</PrecompiledHeader> 113 </ClCompile> 114 </ItemDefinitionGroup> 115 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 116 <ClCompile> 117 <AdditionalIncludeDirectories>../../../..</AdditionalIncludeDirectories> 118 <PrecompiledHeader>Use</PrecompiledHeader> 119 </ClCompile> 120 </ItemDefinitionGroup> 121 <ItemGroup> 122 <ClCompile Include="AssemblyInfo.cpp" /> 123 <ClCompile Include="boost_math.cpp" /> 124 <ClCompile Include="Stdafx.cpp"> 125 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> 126 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> 127 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader> 128 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader> 129 </ClCompile> 130 </ItemGroup> 131 <ItemGroup> 132 <ClInclude Include="boost_math.h" /> 133 <ClInclude Include="resource.h" /> 134 <ClInclude Include="Stdafx.h" /> 135 </ItemGroup> 136 <ItemGroup> 137 <ResourceCompile Include="app.rc" /> 138 </ItemGroup> 139 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 140 <ImportGroup Label="ExtensionTargets"> 141 </ImportGroup> 142</Project>