-
Notifications
You must be signed in to change notification settings - Fork 1
/
udd_rpi_lib.vcxproj
142 lines (142 loc) · 6.65 KB
/
udd_rpi_lib.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.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>
<ProjectConfiguration Include="Debug|ARM64">
<Configuration>Debug</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM64">
<Configuration>Release</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{bbf70396-0225-408a-9d33-01dc19127999}</ProjectGuid>
<Keyword>Linux</Keyword>
<RootNamespace>udd_rpi_lib</RootNamespace>
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
<ApplicationType>Linux</ApplicationType>
<ApplicationTypeRevision>1.0</ApplicationTypeRevision>
<TargetLinuxPlatform>Raspberry</TargetLinuxPlatform>
<LinuxProjectType>{8748239F-558C-44D1-944B-07B09C35B330}</LinuxProjectType>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
<UseDebugLibraries>true</UseDebugLibraries>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
<UseDebugLibraries>false</UseDebugLibraries>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
<UseDebugLibraries>false</UseDebugLibraries>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
<UseDebugLibraries>true</UseDebugLibraries>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="Shared" />
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
<Link>
<LibraryDependencies>wiringPi; pthread</LibraryDependencies>
</Link>
<RemotePostBuildEvent>
<Command>gpio export 17 out</Command>
<Message>export pin 17 using the gpio utility so that we can execute the blink program without sudo</Message>
</RemotePostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
<Link>
<LibraryDependencies>wiringPi</LibraryDependencies>
</Link>
<RemotePostBuildEvent>
<Command>gpio export 17 out</Command>
<Message>export pin 17 using the gpio utility so that we can execute the blink program without sudo</Message>
</RemotePostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="example\demo1.cpp" />
<ClCompile Include="example\demo2.cpp" />
<ClCompile Include="example\wsePaperV2.cpp" />
<ClCompile Include="example\neopixel.cpp" />
<ClCompile Include="example\neopixel2.cpp" />
<ClCompile Include="src\controller\IdGenerator.cpp" />
<ClCompile Include="src\controller\Pixel.cpp" />
<ClCompile Include="src\controller\Point.cpp" />
<ClCompile Include="src\displays\DisplayNeoPixel.cpp" />
<ClCompile Include="src\displays\DisplayST7735R.cpp" />
<ClCompile Include="src\displays\DisplayST7789.cpp" />
<ClCompile Include="src\controller\Metadata.cpp" />
<ClCompile Include="src\controller\Color.cpp" />
<ClCompile Include="src\displays\DisplayWS_ePaper_v2.cpp" />
<ClCompile Include="src\fonts\font12.c" />
<ClCompile Include="src\fonts\font12CN.c" />
<ClCompile Include="src\fonts\font16.c" />
<ClCompile Include="src\fonts\font20.c" />
<ClCompile Include="src\fonts\font24.c" />
<ClCompile Include="src\fonts\font24CN.c" />
<ClCompile Include="src\fonts\font8.c" />
<ClCompile Include="src\controller\Image.cpp" />
<ClCompile Include="src\controller\Display.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\controller\IdGenerator.h" />
<ClInclude Include="src\controller\Pixel.h" />
<ClInclude Include="src\controller\Point.h" />
<ClInclude Include="src\displays\DisplayNeoPixel.h" />
<ClInclude Include="src\displays\DisplayST7735R.h" />
<ClInclude Include="src\displays\DisplayST7789.h" />
<ClInclude Include="src\bmp\GUI_BMPfile.h" />
<ClInclude Include="src\controller\Metadata.h" />
<ClInclude Include="src\controller\Color.h" />
<ClInclude Include="src\displays\DisplayWS_ePaper_v2.h" />
<ClInclude Include="src\displays\DisplayWS_ePaper_v2_LUT.h" />
<ClInclude Include="src\fonts\fonts.h" />
<ClInclude Include="src\controller\Image.h" />
<ClInclude Include="src\controller\Display.h" />
<ClInclude Include="src\controller\inttypes.h" />
</ItemGroup>
<ItemGroup>
<None Include=".gitattributes" />
<None Include=".gitignore" />
<None Include="build.sh" />
<None Include="Makefile" />
<None Include="README.md" />
<None Include="readme\circuit diagram.drawio" />
<None Include="readme\wiringDiagrams.xlsx" />
<None Include="src\fonts\Release_Notes.html" />
<None Include="udd.headers" />
<None Include="udd_rpi_lib.code-workspace" />
</ItemGroup>
<ItemGroup>
<Image Include="images\BlueAngle4-320x240.bmp" />
<Image Include="images\BlueAngles3.png" />
<Image Include="images\BlueAngles4.png" />
<Image Include="images\BlueAngles5.png" />
<Image Include="images\MotorBike-128x128.bmp" />
<Image Include="images\MotorBike.png" />
<Image Include="readme\A26B52E7-CFD9-49FC-AE46-D9560006D6A8.jpeg" />
<Image Include="readme\circuit diagram.png" />
<Image Include="readme\wiringDiagram_st7789.png" />
</ItemGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
<ClCompile>
<AdditionalIncludeDirectories>%(ClCompile.AdditionalIncludeDirectories);src;src/fonts;src/bmp;src/controller;src/displays</AdditionalIncludeDirectories>
<CppLanguageStandard>gnu++11</CppLanguageStandard>
<Optimization>Custom</Optimization>
<AdditionalOptions>-O2</AdditionalOptions>
</ClCompile>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets" />
</Project>