-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsymreader.vcxproj
More file actions
68 lines (68 loc) · 3.19 KB
/
symreader.vcxproj
File metadata and controls
68 lines (68 loc) · 3.19 KB
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
<?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|Android">
<Configuration>Debug</Configuration>
<Platform>Android</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Android">
<Configuration>Release</Configuration>
<Platform>Android</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{B11AC5A8-35F6-4342-837F-C982A951EBDE}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType Condition="'$(Platform)'=='Android'">DynamicLibrary</ConfigurationType>
<ConfigurationType Condition="'$(Platform)'!='Android'">Application</ConfigurationType>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Condition="'$(Platform)'=='Android'">
<TargetExt>.</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PreprocessorDefinitions Condition="'$(Platform)'!='Android'">__signed=signed;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories Condition="'$(Platform)'!='Android'">linux-include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions Condition="'$(Platform)'=='Android'">-std=c++11 -fexceptions %(AdditionalOptions)</AdditionalOptions>
<DisableLanguageExtensions>true</DisableLanguageExtensions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<GenerateSharedLibrary>false</GenerateSharedLibrary>
<NoExecStack>false</NoExecStack>
<AdditionalOptions Condition="'$(Platform)'=='Android'">-Wl,-S %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="filemapping_unix.cpp">
<ExcludedFromBuild Condition="'$(Platform)'!='Android'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="filemapping_win32.cpp">
<ExcludedFromBuild Condition="'$(Platform)'=='Android'">true</ExcludedFromBuild>
<DisableLanguageExtensions>false</DisableLanguageExtensions>
</ClCompile>
<ClCompile Include="main.cpp" />
<ClCompile Include="sym-elf.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="filemapping.h" />
<ClInclude Include="sym-elf.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>