|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 | 2 | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3 | 3 | <ItemGroup Label="ProjectConfigurations">
|
4 |
| - <ProjectConfiguration Include="Debug|Win32"> |
5 |
| - <Configuration>Debug</Configuration> |
| 4 | + <ProjectConfiguration Include="DebugTest|Win32"> |
| 5 | + <Configuration>DebugTest</Configuration> |
6 | 6 | <Platform>Win32</Platform>
|
7 | 7 | </ProjectConfiguration>
|
8 |
| - <ProjectConfiguration Include="Release|Win32"> |
9 |
| - <Configuration>Release</Configuration> |
| 8 | + <ProjectConfiguration Include="ReleaseTest|Win32"> |
| 9 | + <Configuration>ReleaseTest</Configuration> |
10 | 10 | <Platform>Win32</Platform>
|
11 | 11 | </ProjectConfiguration>
|
12 | 12 | </ItemGroup>
|
|
19 | 19 | <ProjectName>tiny_cnn_test</ProjectName>
|
20 | 20 | </PropertyGroup>
|
21 | 21 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
22 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
| 22 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugTest|Win32'" Label="Configuration"> |
23 | 23 | <ConfigurationType>Application</ConfigurationType>
|
24 | 24 | <UseDebugLibraries>true</UseDebugLibraries>
|
25 | 25 | <PlatformToolset>v120</PlatformToolset>
|
26 | 26 | <CharacterSet>MultiByte</CharacterSet>
|
27 | 27 | </PropertyGroup>
|
28 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
| 28 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseTest|Win32'" Label="Configuration"> |
29 | 29 | <ConfigurationType>Application</ConfigurationType>
|
30 | 30 | <UseDebugLibraries>false</UseDebugLibraries>
|
31 |
| - <PlatformToolset>v110</PlatformToolset> |
| 31 | + <PlatformToolset>v120</PlatformToolset> |
32 | 32 | <WholeProgramOptimization>true</WholeProgramOptimization>
|
33 | 33 | <CharacterSet>MultiByte</CharacterSet>
|
34 | 34 | </PropertyGroup>
|
35 | 35 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
36 | 36 | <ImportGroup Label="ExtensionSettings">
|
37 | 37 | </ImportGroup>
|
38 |
| - <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
| 38 | + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='DebugTest|Win32'"> |
39 | 39 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
40 | 40 | </ImportGroup>
|
41 |
| - <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
| 41 | + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='ReleaseTest|Win32'"> |
42 | 42 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
43 | 43 | </ImportGroup>
|
44 | 44 | <PropertyGroup Label="UserMacros" />
|
45 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
| 45 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseTest|Win32'"> |
46 | 46 | <OutDir>$(SolutionDir)Test$(Configuration)\</OutDir>
|
47 | 47 | </PropertyGroup>
|
48 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
| 48 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugTest|Win32'"> |
49 | 49 | <OutDir>$(SolutionDir)Test$(Configuration)\</OutDir>
|
50 | 50 | </PropertyGroup>
|
51 |
| - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
| 51 | + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugTest|Win32'"> |
52 | 52 | <ClCompile>
|
53 | 53 | <WarningLevel>Level3</WarningLevel>
|
54 | 54 | <Optimization>Disabled</Optimization>
|
|
60 | 60 | </AdditionalLibraryDirectories>
|
61 | 61 | </Link>
|
62 | 62 | </ItemDefinitionGroup>
|
63 |
| - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
| 63 | + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseTest|Win32'"> |
64 | 64 | <ClCompile>
|
65 | 65 | <WarningLevel>Level3</WarningLevel>
|
66 | 66 | <Optimization>MaxSpeed</Optimization>
|
67 | 67 | <FunctionLevelLinking>true</FunctionLevelLinking>
|
68 | 68 | <IntrinsicFunctions>true</IntrinsicFunctions>
|
69 |
| - <AdditionalIncludeDirectories>..\</AdditionalIncludeDirectories> |
| 69 | + <AdditionalIncludeDirectories>..\..\</AdditionalIncludeDirectories> |
70 | 70 | <PreprocessorDefinitions>_MBCS;CNN_USE_TBB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
71 | 71 | </ClCompile>
|
72 | 72 | <Link>
|
|
78 | 78 | </Link>
|
79 | 79 | </ItemDefinitionGroup>
|
80 | 80 | <ItemGroup>
|
81 |
| - <ClCompile Include="..\test\test.cpp" /> |
| 81 | + <ClCompile Include="..\..\test\test.cpp" /> |
| 82 | + <ClInclude Include="..\..\tiny_cnn\activations\activation_function.h" /> |
| 83 | + <ClInclude Include="..\..\tiny_cnn\lossfunctions\loss_function.h" /> |
| 84 | + <ClInclude Include="..\..\tiny_cnn\optimizers\optimizer.h" /> |
| 85 | + <ClInclude Include="..\..\tiny_cnn\util\conv_kernel.h" /> |
| 86 | + <ClInclude Include="..\..\tiny_cnn\util\deform.h" /> |
| 87 | + <ClInclude Include="..\..\tiny_cnn\util\weight_init.h" /> |
| 88 | + <ClInclude Include="..\..\tiny_cnn\util\image.h" /> |
| 89 | + <ClInclude Include="..\..\tiny_cnn\util\product.h" /> |
| 90 | + <ClInclude Include="..\..\tiny_cnn\util\nn_error.h" /> |
| 91 | + <ClInclude Include="..\..\tiny_cnn\util\util.h" /> |
| 92 | + <ClInclude Include="..\..\tiny_cnn\util\aligned_allocator.h" /> |
| 93 | + <ClInclude Include="..\..\tiny_cnn\io\mnist_parser.h" /> |
| 94 | + <ClInclude Include="..\..\tiny_cnn\io\cifar10_parser.h" /> |
| 95 | + <ClInclude Include="..\..\tiny_cnn\layers\convolutional_layer.h" /> |
| 96 | + <ClInclude Include="..\..\tiny_cnn\layers\input_layer.h" /> |
| 97 | + <ClInclude Include="..\..\tiny_cnn\layers\layer.h" /> |
| 98 | + <ClInclude Include="..\..\tiny_cnn\layers\layers.h" /> |
| 99 | + <ClInclude Include="..\..\tiny_cnn\layers\fully_connected_layer.h" /> |
| 100 | + <ClInclude Include="..\..\tiny_cnn\layers\max_pooling_layer.h" /> |
| 101 | + <ClInclude Include="..\..\tiny_cnn\layers\partial_connected_layer.h" /> |
| 102 | + <ClInclude Include="..\..\tiny_cnn\layers\average_pooling_layer.h" /> |
| 103 | + <ClInclude Include="..\..\tiny_cnn\layers\dropout.h" /> |
| 104 | + <ClInclude Include="..\..\tiny_cnn\tiny_cnn.h" /> |
| 105 | + <ClInclude Include="..\..\tiny_cnn\config.h" /> |
| 106 | + <ClInclude Include="..\..\tiny_cnn\network.h" /> |
82 | 107 | </ItemGroup>
|
83 | 108 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
84 | 109 | <ImportGroup Label="ExtensionTargets">
|
|
0 commit comments