-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathESP8266-transparent-bridge.vcxproj
84 lines (83 loc) · 3.4 KB
/
ESP8266-transparent-bridge.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
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|ARM">
<Configuration>Debug</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM">
<Configuration>Release</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClCompile Include="driver\uart.c" />
<ClCompile Include="user\config.c" />
<ClCompile Include="user\flash_param.c" />
<ClCompile Include="user\server.c" />
<ClCompile Include="user\user_main.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="include\at_version.h" />
<ClInclude Include="include\driver\uart.h" />
<ClInclude Include="include\driver\uart_register.h" />
<ClInclude Include="include\eagle_soc.h" />
<ClInclude Include="include\espmissingincludes.h" />
<ClInclude Include="include\task.h" />
<ClInclude Include="include\user_config.h" />
<ClInclude Include="user\config.h" />
<ClInclude Include="user\config_wifi.h" />
<ClInclude Include="user\flash_param.h" />
<ClInclude Include="user\server.h" />
</ItemGroup>
<ItemGroup>
<None Include="Makefile_VS2013" />
<None Include="README.md" />
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{55169C13-275D-46F6-B8E8-C3501533A18E}</ProjectGuid>
<Keyword>MakeFileProj</Keyword>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup>
<ConfigurationType>Makefile</ConfigurationType>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<NMakeOutput />
<NMakePreprocessorDefinitions />
<IncludePath>..\xtensa-lx106-elf\lib\gcc\xtensa-lx106-elf\4.8.2\include;..\xtensa-lx106-elf\xtensa-lx106-elf\include\;include\driver;include;..\esp_iot_sdk_v0.9.5\include</IncludePath>
<ExecutablePath />
<ReferencePath />
<LibraryPath />
<LibraryWPath />
<ExcludePath />
<NMakeOutput />
<OutDir>bin</OutDir>
<IntDir>build</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
<NMakeBuildCommandLine>espmake all flash</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>espmake clean all flash</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>espmake clean</NMakeCleanCommandLine>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
<NMakeBuildCommandLine>espmake</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>espmake clean all</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>espmake clean</NMakeCleanCommandLine>
</PropertyGroup>
<ItemDefinitionGroup>
<BuildLog>
<Path />
</BuildLog>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>