geoip2_c 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/geoip2/libmaxminddb/.gitignore +35 -0
- data/ext/geoip2/libmaxminddb/.gitmodules +9 -0
- data/ext/geoip2/libmaxminddb/.perltidyrc +11 -0
- data/ext/geoip2/libmaxminddb/.travis.yml +48 -0
- data/ext/geoip2/libmaxminddb/.uncrustify.cfg +78 -0
- data/ext/geoip2/libmaxminddb/AUTHORS +0 -0
- data/ext/geoip2/libmaxminddb/Changes.md +238 -0
- data/ext/geoip2/libmaxminddb/LICENSE +202 -0
- data/ext/geoip2/libmaxminddb/Makefile.am +41 -0
- data/ext/geoip2/libmaxminddb/NOTICE +13 -0
- data/ext/geoip2/libmaxminddb/README.dev.md +58 -0
- data/ext/geoip2/libmaxminddb/README.md +122 -0
- data/ext/geoip2/libmaxminddb/appveyor.yml +33 -0
- data/ext/geoip2/libmaxminddb/bin/Makefile.am +5 -0
- data/ext/geoip2/libmaxminddb/bin/mmdblookup.c +397 -0
- data/ext/geoip2/libmaxminddb/bootstrap +21 -0
- data/ext/geoip2/libmaxminddb/common.mk +7 -0
- data/ext/geoip2/libmaxminddb/configure.ac +132 -0
- data/ext/geoip2/libmaxminddb/dev-bin/make-man-pages.pl +76 -0
- data/ext/geoip2/libmaxminddb/dev-bin/ppa-release.sh +50 -0
- data/ext/geoip2/libmaxminddb/dev-bin/regen-prototypes.pl +136 -0
- data/ext/geoip2/libmaxminddb/dev-bin/regen-win32-test-projs.pl +54 -0
- data/ext/geoip2/libmaxminddb/dev-bin/release.sh +106 -0
- data/ext/geoip2/libmaxminddb/dev-bin/uncrustify-all.sh +21 -0
- data/ext/geoip2/libmaxminddb/dev-bin/valgrind-all.pl +46 -0
- data/ext/geoip2/libmaxminddb/doc/libmaxminddb.md +889 -0
- data/ext/geoip2/libmaxminddb/doc/mmdblookup.md +103 -0
- data/ext/geoip2/libmaxminddb/include/maxminddb.h +232 -0
- data/ext/geoip2/libmaxminddb/include/maxminddb_config.h.in +14 -0
- data/ext/geoip2/libmaxminddb/projects/VS12/README.md +59 -0
- data/ext/geoip2/libmaxminddb/projects/VS12/libmaxminddb-release.props +32 -0
- data/ext/geoip2/libmaxminddb/projects/VS12/libmaxminddb-x64.props +14 -0
- data/ext/geoip2/libmaxminddb/projects/VS12/libmaxminddb.props +32 -0
- data/ext/geoip2/libmaxminddb/projects/VS12/libmaxminddb.sln +150 -0
- data/ext/geoip2/libmaxminddb/projects/VS12/libmaxminddb.vcxproj +141 -0
- data/ext/geoip2/libmaxminddb/projects/VS12/libmaxminddb.vcxproj.filters +26 -0
- data/ext/geoip2/libmaxminddb/projects/VS12/maxminddb_config.h +14 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/bad_pointers.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/basic_lookup.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/data_entry_list.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/data_types.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/dump.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/get_value.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/get_value_pointer_bug.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/ipv4_start_cache.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/ipv6_lookup_in_ipv4.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/libtap.vcxproj +85 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/maxminddb_test_helper.vcxproj +107 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/metadata.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/metadata_pointers.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/no_map_get_value.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/read_node.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/shared.vcxproj +104 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/threads.vcxproj +103 -0
- data/ext/geoip2/libmaxminddb/projects/VS12-tests/version.vcxproj +105 -0
- data/ext/geoip2/libmaxminddb/projects/test.vcxproj.template +105 -0
- data/ext/geoip2/libmaxminddb/src/Makefile.am +9 -0
- data/ext/geoip2/libmaxminddb/src/libmaxminddb.pc.in +11 -0
- data/ext/geoip2/libmaxminddb/src/maxminddb-compat-util.h +167 -0
- data/ext/geoip2/libmaxminddb/src/maxminddb.c +2171 -0
- data/ext/geoip2/libmaxminddb/t/Makefile.am +23 -0
- data/ext/geoip2/libmaxminddb/t/bad_databases_t.c +66 -0
- data/ext/geoip2/libmaxminddb/t/bad_pointers_t.c +53 -0
- data/ext/geoip2/libmaxminddb/t/basic_lookup_t.c +172 -0
- data/ext/geoip2/libmaxminddb/t/compile_c++_t.pl +107 -0
- data/ext/geoip2/libmaxminddb/t/data_entry_list_t.c +353 -0
- data/ext/geoip2/libmaxminddb/t/data_types_t.c +439 -0
- data/ext/geoip2/libmaxminddb/t/dump_t.c +103 -0
- data/ext/geoip2/libmaxminddb/t/get_value_pointer_bug_t.c +66 -0
- data/ext/geoip2/libmaxminddb/t/get_value_t.c +249 -0
- data/ext/geoip2/libmaxminddb/t/ipv4_start_cache_t.c +36 -0
- data/ext/geoip2/libmaxminddb/t/ipv6_lookup_in_ipv4_t.c +48 -0
- data/ext/geoip2/libmaxminddb/t/maxminddb_test_helper.c +255 -0
- data/ext/geoip2/libmaxminddb/t/maxminddb_test_helper.h +69 -0
- data/ext/geoip2/libmaxminddb/t/metadata_pointers_t.c +32 -0
- data/ext/geoip2/libmaxminddb/t/metadata_t.c +226 -0
- data/ext/geoip2/libmaxminddb/t/mmdblookup_t.pl +158 -0
- data/ext/geoip2/libmaxminddb/t/no_map_get_value_t.c +32 -0
- data/ext/geoip2/libmaxminddb/t/read_node_t.c +157 -0
- data/ext/geoip2/libmaxminddb/t/threads_t.c +196 -0
- data/ext/geoip2/libmaxminddb/t/version_t.c +10 -0
- data/geoip2_c.gemspec +1 -1
- data/lib/geoip2/version.rb +1 -1
- metadata +82 -1
@@ -0,0 +1,107 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="12.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>{A8F568F6-5507-4EC2-A834-F2C0A3C635A5}</ProjectGuid>
|
15
|
+
<Keyword>Win32Proj</Keyword>
|
16
|
+
<RootNamespace>ConsoleApplication1</RootNamespace>
|
17
|
+
<ProjectName>test_maxminddb_test_helper</ProjectName>
|
18
|
+
</PropertyGroup>
|
19
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
20
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
21
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
22
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
23
|
+
<PlatformToolset>v120</PlatformToolset>
|
24
|
+
<CharacterSet>Unicode</CharacterSet>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
27
|
+
<ConfigurationType>Application</ConfigurationType>
|
28
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
29
|
+
<PlatformToolset>v120</PlatformToolset>
|
30
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
31
|
+
<CharacterSet>Unicode</CharacterSet>
|
32
|
+
</PropertyGroup>
|
33
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
34
|
+
<ImportGroup Label="ExtensionSettings">
|
35
|
+
</ImportGroup>
|
36
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
37
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
38
|
+
</ImportGroup>
|
39
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
40
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
41
|
+
</ImportGroup>
|
42
|
+
<PropertyGroup Label="UserMacros" />
|
43
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
44
|
+
<LinkIncremental>true</LinkIncremental>
|
45
|
+
</PropertyGroup>
|
46
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
47
|
+
<LinkIncremental>false</LinkIncremental>
|
48
|
+
</PropertyGroup>
|
49
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
50
|
+
<ClCompile>
|
51
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
52
|
+
<WarningLevel>Level3</WarningLevel>
|
53
|
+
<Optimization>Disabled</Optimization>
|
54
|
+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
55
|
+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\t\libtap</AdditionalIncludeDirectories>
|
56
|
+
</ClCompile>
|
57
|
+
<Link>
|
58
|
+
<SubSystem>Console</SubSystem>
|
59
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
60
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
61
|
+
</Link>
|
62
|
+
</ItemDefinitionGroup>
|
63
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
64
|
+
<ClCompile>
|
65
|
+
<WarningLevel>Level3</WarningLevel>
|
66
|
+
<PrecompiledHeader>
|
67
|
+
</PrecompiledHeader>
|
68
|
+
<Optimization>MaxSpeed</Optimization>
|
69
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
70
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
71
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
72
|
+
</ClCompile>
|
73
|
+
<Link>
|
74
|
+
<SubSystem>Console</SubSystem>
|
75
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
76
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
77
|
+
<OptimizeReferences>true</OptimizeReferences>
|
78
|
+
</Link>
|
79
|
+
</ItemDefinitionGroup>
|
80
|
+
<ItemGroup>
|
81
|
+
<ProjectReference Include="..\..\t\libtap\libtap.vcxproj">
|
82
|
+
<Project>{4dfc985a-83d7-4e61-85fe-c6ea6e43e3aa}</Project>
|
83
|
+
<Private>true</Private>
|
84
|
+
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
|
85
|
+
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
86
|
+
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
87
|
+
<UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
|
88
|
+
</ProjectReference>
|
89
|
+
<ProjectReference Include="..\VS12\libmaxminddb.vcxproj">
|
90
|
+
<Project>{82953bda-2960-4ada-a6d5-92e65ccb4a3d}</Project>
|
91
|
+
<Private>true</Private>
|
92
|
+
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
|
93
|
+
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
94
|
+
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
95
|
+
<UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
|
96
|
+
</ProjectReference>
|
97
|
+
</ItemGroup>
|
98
|
+
<ItemGroup>
|
99
|
+
<ClInclude Include="..\..\t\maxminddb_test_helper.h" />
|
100
|
+
</ItemGroup>
|
101
|
+
<ItemGroup>
|
102
|
+
<ClCompile Include="..\..\t\maxminddb_test_helper.c" />
|
103
|
+
</ItemGroup>
|
104
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
105
|
+
<ImportGroup Label="ExtensionTargets">
|
106
|
+
</ImportGroup>
|
107
|
+
</Project>
|
@@ -0,0 +1,105 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="12.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>{B1984C6E-376C-11E7-A95B-48C58C130AD6}</ProjectGuid>
|
15
|
+
<Keyword>Win32Proj</Keyword>
|
16
|
+
<RootNamespace>metadata</RootNamespace>
|
17
|
+
<ProjectName>test_metadata</ProjectName>
|
18
|
+
</PropertyGroup>
|
19
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
20
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
21
|
+
<ConfigurationType>Application</ConfigurationType>
|
22
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
23
|
+
<PlatformToolset>v120</PlatformToolset>
|
24
|
+
<CharacterSet>Unicode</CharacterSet>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
27
|
+
<ConfigurationType>Application</ConfigurationType>
|
28
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
29
|
+
<PlatformToolset>v120</PlatformToolset>
|
30
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
31
|
+
<CharacterSet>Unicode</CharacterSet>
|
32
|
+
</PropertyGroup>
|
33
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
34
|
+
<ImportGroup Label="ExtensionSettings">
|
35
|
+
</ImportGroup>
|
36
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
37
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
38
|
+
</ImportGroup>
|
39
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
40
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
41
|
+
</ImportGroup>
|
42
|
+
<PropertyGroup Label="UserMacros" />
|
43
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
44
|
+
<LinkIncremental>true</LinkIncremental>
|
45
|
+
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
46
|
+
</PropertyGroup>
|
47
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
48
|
+
<LinkIncremental>false</LinkIncremental>
|
49
|
+
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
50
|
+
</PropertyGroup>
|
51
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
52
|
+
<ClCompile>
|
53
|
+
<PrecompiledHeader>
|
54
|
+
</PrecompiledHeader>
|
55
|
+
<WarningLevel>Level3</WarningLevel>
|
56
|
+
<Optimization>Disabled</Optimization>
|
57
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
58
|
+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\t\libtap</AdditionalIncludeDirectories>
|
59
|
+
</ClCompile>
|
60
|
+
<Link>
|
61
|
+
<SubSystem>Console</SubSystem>
|
62
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
63
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
64
|
+
</Link>
|
65
|
+
</ItemDefinitionGroup>
|
66
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
67
|
+
<ClCompile>
|
68
|
+
<WarningLevel>Level3</WarningLevel>
|
69
|
+
<PrecompiledHeader>
|
70
|
+
</PrecompiledHeader>
|
71
|
+
<Optimization>MaxSpeed</Optimization>
|
72
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
73
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
74
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
75
|
+
</ClCompile>
|
76
|
+
<Link>
|
77
|
+
<SubSystem>Console</SubSystem>
|
78
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
79
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
80
|
+
<OptimizeReferences>true</OptimizeReferences>
|
81
|
+
</Link>
|
82
|
+
</ItemDefinitionGroup>
|
83
|
+
<ItemGroup>
|
84
|
+
<ClCompile Include="..\..\t\metadata_t.c" />
|
85
|
+
</ItemGroup>
|
86
|
+
<ItemGroup>
|
87
|
+
<ProjectReference Include="libtap.vcxproj">
|
88
|
+
<Project>{4dfc985a-83d7-4e61-85fe-c6ea6e43e3aa}</Project>
|
89
|
+
</ProjectReference>
|
90
|
+
<ProjectReference Include="..\VS12\libmaxminddb.vcxproj">
|
91
|
+
<Project>{82953bda-2960-4ada-a6d5-92e65ccb4a3d}</Project>
|
92
|
+
</ProjectReference>
|
93
|
+
<ProjectReference Include="maxminddb_test_helper.vcxproj">
|
94
|
+
<Project>{a8f568f6-5507-4ec2-a834-f2c0a3c635a5}</Project>
|
95
|
+
<Private>true</Private>
|
96
|
+
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
|
97
|
+
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
98
|
+
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
99
|
+
<UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
|
100
|
+
</ProjectReference>
|
101
|
+
</ItemGroup>
|
102
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
103
|
+
<ImportGroup Label="ExtensionTargets">
|
104
|
+
</ImportGroup>
|
105
|
+
</Project>
|
@@ -0,0 +1,105 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="12.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>{B19849D0-376C-11E7-A95B-48C58C130AD6}</ProjectGuid>
|
15
|
+
<Keyword>Win32Proj</Keyword>
|
16
|
+
<RootNamespace>metadata_pointers</RootNamespace>
|
17
|
+
<ProjectName>test_metadata_pointers</ProjectName>
|
18
|
+
</PropertyGroup>
|
19
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
20
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
21
|
+
<ConfigurationType>Application</ConfigurationType>
|
22
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
23
|
+
<PlatformToolset>v120</PlatformToolset>
|
24
|
+
<CharacterSet>Unicode</CharacterSet>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
27
|
+
<ConfigurationType>Application</ConfigurationType>
|
28
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
29
|
+
<PlatformToolset>v120</PlatformToolset>
|
30
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
31
|
+
<CharacterSet>Unicode</CharacterSet>
|
32
|
+
</PropertyGroup>
|
33
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
34
|
+
<ImportGroup Label="ExtensionSettings">
|
35
|
+
</ImportGroup>
|
36
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
37
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
38
|
+
</ImportGroup>
|
39
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
40
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
41
|
+
</ImportGroup>
|
42
|
+
<PropertyGroup Label="UserMacros" />
|
43
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
44
|
+
<LinkIncremental>true</LinkIncremental>
|
45
|
+
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
46
|
+
</PropertyGroup>
|
47
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
48
|
+
<LinkIncremental>false</LinkIncremental>
|
49
|
+
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
50
|
+
</PropertyGroup>
|
51
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
52
|
+
<ClCompile>
|
53
|
+
<PrecompiledHeader>
|
54
|
+
</PrecompiledHeader>
|
55
|
+
<WarningLevel>Level3</WarningLevel>
|
56
|
+
<Optimization>Disabled</Optimization>
|
57
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
58
|
+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\t\libtap</AdditionalIncludeDirectories>
|
59
|
+
</ClCompile>
|
60
|
+
<Link>
|
61
|
+
<SubSystem>Console</SubSystem>
|
62
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
63
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
64
|
+
</Link>
|
65
|
+
</ItemDefinitionGroup>
|
66
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
67
|
+
<ClCompile>
|
68
|
+
<WarningLevel>Level3</WarningLevel>
|
69
|
+
<PrecompiledHeader>
|
70
|
+
</PrecompiledHeader>
|
71
|
+
<Optimization>MaxSpeed</Optimization>
|
72
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
73
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
74
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
75
|
+
</ClCompile>
|
76
|
+
<Link>
|
77
|
+
<SubSystem>Console</SubSystem>
|
78
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
79
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
80
|
+
<OptimizeReferences>true</OptimizeReferences>
|
81
|
+
</Link>
|
82
|
+
</ItemDefinitionGroup>
|
83
|
+
<ItemGroup>
|
84
|
+
<ClCompile Include="..\..\t\metadata_pointers_t.c" />
|
85
|
+
</ItemGroup>
|
86
|
+
<ItemGroup>
|
87
|
+
<ProjectReference Include="libtap.vcxproj">
|
88
|
+
<Project>{4dfc985a-83d7-4e61-85fe-c6ea6e43e3aa}</Project>
|
89
|
+
</ProjectReference>
|
90
|
+
<ProjectReference Include="..\VS12\libmaxminddb.vcxproj">
|
91
|
+
<Project>{82953bda-2960-4ada-a6d5-92e65ccb4a3d}</Project>
|
92
|
+
</ProjectReference>
|
93
|
+
<ProjectReference Include="maxminddb_test_helper.vcxproj">
|
94
|
+
<Project>{a8f568f6-5507-4ec2-a834-f2c0a3c635a5}</Project>
|
95
|
+
<Private>true</Private>
|
96
|
+
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
|
97
|
+
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
98
|
+
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
99
|
+
<UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
|
100
|
+
</ProjectReference>
|
101
|
+
</ItemGroup>
|
102
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
103
|
+
<ImportGroup Label="ExtensionTargets">
|
104
|
+
</ImportGroup>
|
105
|
+
</Project>
|
@@ -0,0 +1,105 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="12.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>{B1984EC6-376C-11E7-A95B-48C58C130AD6}</ProjectGuid>
|
15
|
+
<Keyword>Win32Proj</Keyword>
|
16
|
+
<RootNamespace>no_map_get_value</RootNamespace>
|
17
|
+
<ProjectName>test_no_map_get_value</ProjectName>
|
18
|
+
</PropertyGroup>
|
19
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
20
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
21
|
+
<ConfigurationType>Application</ConfigurationType>
|
22
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
23
|
+
<PlatformToolset>v120</PlatformToolset>
|
24
|
+
<CharacterSet>Unicode</CharacterSet>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
27
|
+
<ConfigurationType>Application</ConfigurationType>
|
28
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
29
|
+
<PlatformToolset>v120</PlatformToolset>
|
30
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
31
|
+
<CharacterSet>Unicode</CharacterSet>
|
32
|
+
</PropertyGroup>
|
33
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
34
|
+
<ImportGroup Label="ExtensionSettings">
|
35
|
+
</ImportGroup>
|
36
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
37
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
38
|
+
</ImportGroup>
|
39
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
40
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
41
|
+
</ImportGroup>
|
42
|
+
<PropertyGroup Label="UserMacros" />
|
43
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
44
|
+
<LinkIncremental>true</LinkIncremental>
|
45
|
+
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
46
|
+
</PropertyGroup>
|
47
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
48
|
+
<LinkIncremental>false</LinkIncremental>
|
49
|
+
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
50
|
+
</PropertyGroup>
|
51
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
52
|
+
<ClCompile>
|
53
|
+
<PrecompiledHeader>
|
54
|
+
</PrecompiledHeader>
|
55
|
+
<WarningLevel>Level3</WarningLevel>
|
56
|
+
<Optimization>Disabled</Optimization>
|
57
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
58
|
+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\t\libtap</AdditionalIncludeDirectories>
|
59
|
+
</ClCompile>
|
60
|
+
<Link>
|
61
|
+
<SubSystem>Console</SubSystem>
|
62
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
63
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
64
|
+
</Link>
|
65
|
+
</ItemDefinitionGroup>
|
66
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
67
|
+
<ClCompile>
|
68
|
+
<WarningLevel>Level3</WarningLevel>
|
69
|
+
<PrecompiledHeader>
|
70
|
+
</PrecompiledHeader>
|
71
|
+
<Optimization>MaxSpeed</Optimization>
|
72
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
73
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
74
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
75
|
+
</ClCompile>
|
76
|
+
<Link>
|
77
|
+
<SubSystem>Console</SubSystem>
|
78
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
79
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
80
|
+
<OptimizeReferences>true</OptimizeReferences>
|
81
|
+
</Link>
|
82
|
+
</ItemDefinitionGroup>
|
83
|
+
<ItemGroup>
|
84
|
+
<ClCompile Include="..\..\t\no_map_get_value_t.c" />
|
85
|
+
</ItemGroup>
|
86
|
+
<ItemGroup>
|
87
|
+
<ProjectReference Include="libtap.vcxproj">
|
88
|
+
<Project>{4dfc985a-83d7-4e61-85fe-c6ea6e43e3aa}</Project>
|
89
|
+
</ProjectReference>
|
90
|
+
<ProjectReference Include="..\VS12\libmaxminddb.vcxproj">
|
91
|
+
<Project>{82953bda-2960-4ada-a6d5-92e65ccb4a3d}</Project>
|
92
|
+
</ProjectReference>
|
93
|
+
<ProjectReference Include="maxminddb_test_helper.vcxproj">
|
94
|
+
<Project>{a8f568f6-5507-4ec2-a834-f2c0a3c635a5}</Project>
|
95
|
+
<Private>true</Private>
|
96
|
+
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
|
97
|
+
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
98
|
+
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
99
|
+
<UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
|
100
|
+
</ProjectReference>
|
101
|
+
</ItemGroup>
|
102
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
103
|
+
<ImportGroup Label="ExtensionTargets">
|
104
|
+
</ImportGroup>
|
105
|
+
</Project>
|
@@ -0,0 +1,105 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="12.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>{B198504C-376C-11E7-A95B-48C58C130AD6}</ProjectGuid>
|
15
|
+
<Keyword>Win32Proj</Keyword>
|
16
|
+
<RootNamespace>read_node</RootNamespace>
|
17
|
+
<ProjectName>test_read_node</ProjectName>
|
18
|
+
</PropertyGroup>
|
19
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
20
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
21
|
+
<ConfigurationType>Application</ConfigurationType>
|
22
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
23
|
+
<PlatformToolset>v120</PlatformToolset>
|
24
|
+
<CharacterSet>Unicode</CharacterSet>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
27
|
+
<ConfigurationType>Application</ConfigurationType>
|
28
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
29
|
+
<PlatformToolset>v120</PlatformToolset>
|
30
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
31
|
+
<CharacterSet>Unicode</CharacterSet>
|
32
|
+
</PropertyGroup>
|
33
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
34
|
+
<ImportGroup Label="ExtensionSettings">
|
35
|
+
</ImportGroup>
|
36
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
37
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
38
|
+
</ImportGroup>
|
39
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
40
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
41
|
+
</ImportGroup>
|
42
|
+
<PropertyGroup Label="UserMacros" />
|
43
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
44
|
+
<LinkIncremental>true</LinkIncremental>
|
45
|
+
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
46
|
+
</PropertyGroup>
|
47
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
48
|
+
<LinkIncremental>false</LinkIncremental>
|
49
|
+
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
50
|
+
</PropertyGroup>
|
51
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
52
|
+
<ClCompile>
|
53
|
+
<PrecompiledHeader>
|
54
|
+
</PrecompiledHeader>
|
55
|
+
<WarningLevel>Level3</WarningLevel>
|
56
|
+
<Optimization>Disabled</Optimization>
|
57
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
58
|
+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\t\libtap</AdditionalIncludeDirectories>
|
59
|
+
</ClCompile>
|
60
|
+
<Link>
|
61
|
+
<SubSystem>Console</SubSystem>
|
62
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
63
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
64
|
+
</Link>
|
65
|
+
</ItemDefinitionGroup>
|
66
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
67
|
+
<ClCompile>
|
68
|
+
<WarningLevel>Level3</WarningLevel>
|
69
|
+
<PrecompiledHeader>
|
70
|
+
</PrecompiledHeader>
|
71
|
+
<Optimization>MaxSpeed</Optimization>
|
72
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
73
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
74
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
75
|
+
</ClCompile>
|
76
|
+
<Link>
|
77
|
+
<SubSystem>Console</SubSystem>
|
78
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
79
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
80
|
+
<OptimizeReferences>true</OptimizeReferences>
|
81
|
+
</Link>
|
82
|
+
</ItemDefinitionGroup>
|
83
|
+
<ItemGroup>
|
84
|
+
<ClCompile Include="..\..\t\read_node_t.c" />
|
85
|
+
</ItemGroup>
|
86
|
+
<ItemGroup>
|
87
|
+
<ProjectReference Include="libtap.vcxproj">
|
88
|
+
<Project>{4dfc985a-83d7-4e61-85fe-c6ea6e43e3aa}</Project>
|
89
|
+
</ProjectReference>
|
90
|
+
<ProjectReference Include="..\VS12\libmaxminddb.vcxproj">
|
91
|
+
<Project>{82953bda-2960-4ada-a6d5-92e65ccb4a3d}</Project>
|
92
|
+
</ProjectReference>
|
93
|
+
<ProjectReference Include="maxminddb_test_helper.vcxproj">
|
94
|
+
<Project>{a8f568f6-5507-4ec2-a834-f2c0a3c635a5}</Project>
|
95
|
+
<Private>true</Private>
|
96
|
+
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
|
97
|
+
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
98
|
+
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
99
|
+
<UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
|
100
|
+
</ProjectReference>
|
101
|
+
</ItemGroup>
|
102
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
103
|
+
<ImportGroup Label="ExtensionTargets">
|
104
|
+
</ImportGroup>
|
105
|
+
</Project>
|
@@ -0,0 +1,104 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="12.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>{A8F568F6-5507-4EC2-A834-F2C0A3C635A5}</ProjectGuid>
|
15
|
+
<Keyword>Win32Proj</Keyword>
|
16
|
+
<RootNamespace>ConsoleApplication1</RootNamespace>
|
17
|
+
<ProjectName>test_maxminddb_test_helper</ProjectName>
|
18
|
+
</PropertyGroup>
|
19
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
20
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
21
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
22
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
23
|
+
<PlatformToolset>v120</PlatformToolset>
|
24
|
+
<CharacterSet>Unicode</CharacterSet>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
27
|
+
<ConfigurationType>Application</ConfigurationType>
|
28
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
29
|
+
<PlatformToolset>v120</PlatformToolset>
|
30
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
31
|
+
<CharacterSet>Unicode</CharacterSet>
|
32
|
+
</PropertyGroup>
|
33
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
34
|
+
<ImportGroup Label="ExtensionSettings">
|
35
|
+
</ImportGroup>
|
36
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
37
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
38
|
+
</ImportGroup>
|
39
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
40
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
41
|
+
</ImportGroup>
|
42
|
+
<PropertyGroup Label="UserMacros" />
|
43
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
44
|
+
<LinkIncremental>true</LinkIncremental>
|
45
|
+
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
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>NotUsing</PrecompiledHeader>
|
53
|
+
<WarningLevel>Level3</WarningLevel>
|
54
|
+
<Optimization>Disabled</Optimization>
|
55
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
56
|
+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\t\libtap</AdditionalIncludeDirectories>
|
57
|
+
<AdditionalOptions>/FS %(AdditionalOptions)</AdditionalOptions>
|
58
|
+
</ClCompile>
|
59
|
+
<Link>
|
60
|
+
<SubSystem>Console</SubSystem>
|
61
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
62
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
63
|
+
</Link>
|
64
|
+
</ItemDefinitionGroup>
|
65
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
66
|
+
<ClCompile>
|
67
|
+
<WarningLevel>Level3</WarningLevel>
|
68
|
+
<PrecompiledHeader>
|
69
|
+
</PrecompiledHeader>
|
70
|
+
<Optimization>MaxSpeed</Optimization>
|
71
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
72
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
73
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(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
|
+
<ProjectReference Include="..\VS12\libmaxminddb.vcxproj">
|
84
|
+
<Project>{82953bda-2960-4ada-a6d5-92e65ccb4a3d}</Project>
|
85
|
+
<Private>true</Private>
|
86
|
+
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
|
87
|
+
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
88
|
+
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
89
|
+
<UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
|
90
|
+
</ProjectReference>
|
91
|
+
<ProjectReference Include="libtap.vcxproj">
|
92
|
+
<Project>{4dfc985a-83d7-4e61-85fe-c6ea6e43e3aa}</Project>
|
93
|
+
</ProjectReference>
|
94
|
+
</ItemGroup>
|
95
|
+
<ItemGroup>
|
96
|
+
<ClInclude Include="..\..\t\maxminddb_test_helper.h" />
|
97
|
+
</ItemGroup>
|
98
|
+
<ItemGroup>
|
99
|
+
<ClCompile Include="..\..\t\maxminddb_test_helper.c" />
|
100
|
+
</ItemGroup>
|
101
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
102
|
+
<ImportGroup Label="ExtensionTargets">
|
103
|
+
</ImportGroup>
|
104
|
+
</Project>
|