-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjansson.vcxproj
76 lines (76 loc) · 3.25 KB
/
jansson.vcxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug Static|Win32">
<Configuration>Debug Static</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug Dynamic|Win32">
<Configuration>Debug Dynamic</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug Static|x64">
<Configuration>Debug Static</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug Dynamic|x64">
<Configuration>Debug Dynamic</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release Static|Win32">
<Configuration>Release Static</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release Dynamic|Win32">
<Configuration>Release Dynamic</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release Static|x64">
<Configuration>Release Static</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release Dynamic|x64">
<Configuration>Release Dynamic</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{91E1D907-56ED-493E-AF3B-35CC16E3E4F2}</ProjectGuid>
<RootNamespace>jansson</RootNamespace>
</PropertyGroup>
<ImportGroup Label="PropertySheets">
<Import Project="Base.props" />
</ImportGroup>
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions>HAVE_CONFIG_H;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<DisableSpecificWarnings>4090;%(DisableSpecificWarnings)</DisableSpecificWarnings>
</ClCompile>
<Link>
<ModuleDefinitionFile>jansson\src\jansson.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="jansson_config.h" />
<ClInclude Include="jansson_private_config.h" />
<ClInclude Include="jansson\src\hashtable.h" />
<ClInclude Include="jansson\src\jansson_private.h" />
<ClInclude Include="jansson\src\strbuffer.h" />
<ClInclude Include="jansson\src\utf.h" />
<ClInclude Include="jansson\src\jansson.h" />
<ClCompile Include="jansson\src\dump.c" />
<ClCompile Include="jansson\src\error.c" />
<ClCompile Include="jansson\src\hashtable.c" />
<ClCompile Include="jansson\src\hashtable_seed.c" />
<ClCompile Include="jansson\src\load.c" />
<ClCompile Include="jansson\src\memory.c" />
<ClCompile Include="jansson\src\pack_unpack.c" />
<ClCompile Include="jansson\src\strbuffer.c" />
<ClCompile Include="jansson\src\strconv.c" />
<ClCompile Include="jansson\src\utf.c" />
<ClCompile Include="jansson\src\value.c" />
<ClCompile Include="jansson\src\version.c" />
<None Include="jansson\src\jansson.def" />
<CopyFiles Include="$(ProjectDir)\jansson\src\jansson.h" OutputFile="$(ProjectDir)\include\jansson.h" />
</ItemGroup>
</Project>