vector.vcxproj 4.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="14.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. <ProjectGuid>{B5929E19-32F7-4079-87AC-FE77E97BFF31}</ProjectGuid>
  23. <Keyword>MakeFileProj</Keyword>
  24. </PropertyGroup>
  25. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  27. <ConfigurationType>Makefile</ConfigurationType>
  28. <UseDebugLibraries>true</UseDebugLibraries>
  29. <PlatformToolset>v140</PlatformToolset>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  32. <ConfigurationType>Makefile</ConfigurationType>
  33. <UseDebugLibraries>false</UseDebugLibraries>
  34. <PlatformToolset>v140</PlatformToolset>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  37. <ConfigurationType>Application</ConfigurationType>
  38. <UseDebugLibraries>true</UseDebugLibraries>
  39. <PlatformToolset>v140</PlatformToolset>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  42. <ConfigurationType>Application</ConfigurationType>
  43. <UseDebugLibraries>false</UseDebugLibraries>
  44. <PlatformToolset>v140</PlatformToolset>
  45. </PropertyGroup>
  46. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  47. <ImportGroup Label="ExtensionSettings">
  48. </ImportGroup>
  49. <ImportGroup Label="Shared">
  50. </ImportGroup>
  51. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  52. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  53. </ImportGroup>
  54. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  55. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  56. </ImportGroup>
  57. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  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|x64'">
  61. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  62. </ImportGroup>
  63. <PropertyGroup Label="UserMacros" />
  64. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  65. <NMakeBuildCommandLine>make debug</NMakeBuildCommandLine>
  66. <NMakeCleanCommandLine>make clean</NMakeCleanCommandLine>
  67. <NMakeReBuildCommandLine>make clean debug</NMakeReBuildCommandLine>
  68. <NMakePreprocessorDefinitions>_USE_MATH_DEFINES;WIN32;_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
  69. </PropertyGroup>
  70. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  71. <NMakeBuildCommandLine>make release</NMakeBuildCommandLine>
  72. <NMakeCleanCommandLine>make clean</NMakeCleanCommandLine>
  73. <NMakeReBuildCommandLine>make clean release</NMakeReBuildCommandLine>
  74. <NMakePreprocessorDefinitions>_USE_MATH_DEFINES;WIN32;NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
  75. </PropertyGroup>
  76. <ItemDefinitionGroup>
  77. </ItemDefinitionGroup>
  78. <ItemGroup>
  79. <ClCompile Include="vector_tc.cpp" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <ClInclude Include="vector.hpp" />
  83. <ClInclude Include="vector_tc.h" />
  84. <ClInclude Include="vector_type_generator.hpp" />
  85. </ItemGroup>
  86. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  87. <ImportGroup Label="ExtensionTargets">
  88. </ImportGroup>
  89. </Project>