hello_cudaプロジェクトを追加
[cuda.git] / hello_cuda / hello_cuda.vcxproj
1 \feff<?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     <ProjectGuid>{7D8BDE6F-21B7-4F3F-9AA3-C408D487CB44}</ProjectGuid>
15     <Keyword>Win32Proj</Keyword>
16     <RootNamespace>hello_cuda</RootNamespace>
17   </PropertyGroup>
18   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
19   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
20     <ConfigurationType>Application</ConfigurationType>
21     <UseDebugLibraries>true</UseDebugLibraries>
22     <CharacterSet>Unicode</CharacterSet>
23   </PropertyGroup>
24   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
25     <ConfigurationType>Application</ConfigurationType>
26     <UseDebugLibraries>false</UseDebugLibraries>
27     <WholeProgramOptimization>true</WholeProgramOptimization>
28     <CharacterSet>Unicode</CharacterSet>
29   </PropertyGroup>
30   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
31   <ImportGroup Label="ExtensionSettings">
32     <Import Project="$(VCTargetsPath)\BuildCustomizations\CUDA 4.2.props" />
33   </ImportGroup>
34   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
35     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36   </ImportGroup>
37   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
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 Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
42     <LinkIncremental>true</LinkIncremental>
43     <IncludePath>$(CUDA_INC_PATH);$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSdkDir)include;$(FrameworkSDKDir)\include;</IncludePath>
44     <LibraryPath>$(CUDA_LIB_PATH);$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSdkDir)lib;$(FrameworkSDKDir)\lib</LibraryPath>
45     <ExecutablePath>$(CUDA_BIN_PATH);$(VCInstallDir)bin;$(WindowsSdkDir)bin\NETFX 4.0 Tools;$(WindowsSdkDir)bin;$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(VSInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(FrameworkSDKDir)\bin;$(MSBuildToolsPath32);$(VSInstallDir);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);</ExecutablePath>
46   </PropertyGroup>
47   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
48     <LinkIncremental>false</LinkIncremental>
49   </PropertyGroup>
50   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
51     <ClCompile>
52       <PrecompiledHeader>Use</PrecompiledHeader>
53       <WarningLevel>Level3</WarningLevel>
54       <Optimization>Disabled</Optimization>
55       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
56     </ClCompile>
57     <Link>
58       <SubSystem>Console</SubSystem>
59       <GenerateDebugInformation>true</GenerateDebugInformation>
60       <AdditionalDependencies>cudart.lib;%(AdditionalDependencies)</AdditionalDependencies>
61     </Link>
62     <CudaCompile>
63       <CodeGeneration>compute_30,sm_30</CodeGeneration>
64     </CudaCompile>
65   </ItemDefinitionGroup>
66   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
67     <ClCompile>
68       <WarningLevel>Level3</WarningLevel>
69       <PrecompiledHeader>Use</PrecompiledHeader>
70       <Optimization>MaxSpeed</Optimization>
71       <FunctionLevelLinking>true</FunctionLevelLinking>
72       <IntrinsicFunctions>true</IntrinsicFunctions>
73       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
74     </ClCompile>
75     <Link>
76       <SubSystem>Console</SubSystem>
77       <GenerateDebugInformation>true</GenerateDebugInformation>
78       <EnableCOMDATFolding>true</EnableCOMDATFolding>
79       <OptimizeReferences>true</OptimizeReferences>
80     </Link>
81   </ItemDefinitionGroup>
82   <ItemGroup>
83     <None Include="COPYING.TXT" />
84     <None Include="hello.cuh" />
85     <None Include="ReadMe.txt" />
86   </ItemGroup>
87   <ItemGroup>
88     <ClInclude Include="hello.h" />
89     <ClInclude Include="stdafx.h" />
90     <ClInclude Include="targetver.h" />
91   </ItemGroup>
92   <ItemGroup>
93     <ClCompile Include="hello_cuda.cpp" />
94     <ClCompile Include="stdafx.cpp">
95       <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
96       <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
97     </ClCompile>
98   </ItemGroup>
99   <ItemGroup>
100     <CudaCompile Include="hello.cu" />
101   </ItemGroup>
102   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
103   <ImportGroup Label="ExtensionTargets">
104     <Import Project="$(VCTargetsPath)\BuildCustomizations\CUDA 4.2.targets" />
105   </ImportGroup>
106 </Project>