シンプルな二値化のサンプルを追加
[cuda.git] / binarize / binarize.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>{09509FB4-D960-4D0A-95CA-B581FF768B61}</ProjectGuid>
15     <Keyword>Win32Proj</Keyword>
16     <RootNamespace>binarize</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   </PropertyGroup>
44   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
45     <LinkIncremental>false</LinkIncremental>
46   </PropertyGroup>
47   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
48     <ClCompile>
49       <PrecompiledHeader>Use</PrecompiledHeader>
50       <WarningLevel>Level3</WarningLevel>
51       <Optimization>Disabled</Optimization>
52       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
53       <AdditionalIncludeDirectories>..\libutils</AdditionalIncludeDirectories>
54     </ClCompile>
55     <Link>
56       <SubSystem>Console</SubSystem>
57       <GenerateDebugInformation>true</GenerateDebugInformation>
58       <AdditionalDependencies>cudart.lib;%(AdditionalDependencies)</AdditionalDependencies>
59     </Link>
60     <CudaCompile>
61       <Include>..\libutils</Include>
62       <CodeGeneration>compute_30,sm_30</CodeGeneration>
63     </CudaCompile>
64   </ItemDefinitionGroup>
65   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
66     <ClCompile>
67       <WarningLevel>Level3</WarningLevel>
68       <PrecompiledHeader>Use</PrecompiledHeader>
69       <Optimization>MaxSpeed</Optimization>
70       <FunctionLevelLinking>true</FunctionLevelLinking>
71       <IntrinsicFunctions>true</IntrinsicFunctions>
72       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
73     </ClCompile>
74     <Link>
75       <SubSystem>Console</SubSystem>
76       <GenerateDebugInformation>true</GenerateDebugInformation>
77       <EnableCOMDATFolding>true</EnableCOMDATFolding>
78       <OptimizeReferences>true</OptimizeReferences>
79     </Link>
80   </ItemDefinitionGroup>
81   <ItemGroup>
82     <None Include="binarize.cuh" />
83     <None Include="COPYING.TXT" />
84     <None Include="ReadMe.txt" />
85   </ItemGroup>
86   <ItemGroup>
87     <ClInclude Include="binarize.h" />
88     <ClInclude Include="stdafx.h" />
89     <ClInclude Include="targetver.h" />
90   </ItemGroup>
91   <ItemGroup>
92     <ClCompile Include="binarize.cpp" />
93     <ClCompile Include="stdafx.cpp">
94       <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
95       <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
96     </ClCompile>
97   </ItemGroup>
98   <ItemGroup>
99     <ProjectReference Include="..\libutils\libutils.vcxproj">
100       <Project>{4c5c7860-d42e-4598-9742-d5ad444db16f}</Project>
101     </ProjectReference>
102   </ItemGroup>
103   <ItemGroup>
104     <CudaCompile Include="binarize.cu" />
105   </ItemGroup>
106   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
107   <ImportGroup Label="ExtensionTargets">
108     <Import Project="$(VCTargetsPath)\BuildCustomizations\CUDA 4.2.targets" />
109   </ImportGroup>
110 </Project>