-
Notifications
You must be signed in to change notification settings - Fork 0
/
BluetoothSppChat.vcxproj
96 lines (96 loc) · 4.24 KB
/
BluetoothSppChat.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
<?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|BlackBerry">
<Configuration>Debug</Configuration>
<Platform>BlackBerry</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|BlackBerry">
<Configuration>Release</Configuration>
<Platform>BlackBerry</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{5D9D0967-96DF-4FAD-86D6-001563D3E84B}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|BlackBerry'">
<PlatformToolset>qcc</PlatformToolset>
<ConfigurationAppType>Cascades</ConfigurationAppType>
<TargetArch>armle-v7</TargetArch>
<MakefileTargetName>Device-Debug</MakefileTargetName>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|BlackBerry'">
<PlatformToolset>qcc</PlatformToolset>
<ConfigurationAppType>Cascades</ConfigurationAppType>
<TargetArch>armle-v7</TargetArch>
<MakefileTargetName>Device-Release</MakefileTargetName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|BlackBerry'">
<ClCompile>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>bbsystem;btapi;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|BlackBerry'">
<Link>
<AdditionalDependencies>bbsystem;btapi;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<None Include="assets\images\broadcasts.png" />
<None Include="assets\images\device_discovery.png" />
<None Include="assets\images\discoverable_off.png" />
<None Include="assets\images\discoverable_on.png" />
<None Include="assets\images\local_device.png" />
<None Include="assets\images\notify.png" />
<None Include="assets\images\off.png" />
<None Include="assets\images\on.png" />
<None Include="assets\images\save.png" />
<None Include="assets\images\send.png" />
<None Include="assets\LabelLabel.qml" />
<None Include="assets\LocalDeviceInfoSheet.qml" />
<None Include="assets\main.qml" />
<None Include="assets\RemoteDevice.qml" />
<None Include="assets\RemoteDeviceInfoSheet.qml" />
<None Include="assets\SPPChat.qml" />
<None Include="bar-descriptor.xml" />
<None Include="bluetoothsppchat.pro" />
<None Include="config.pri" />
<None Include="device-assets.xml" />
<None Include="icon.png" />
<None Include="LICENSE" />
<None Include="Makefile" />
<None Include="readme.txt" />
<None Include="translations\bluetoothsppchat.pro" />
<None Include="translations\bluetoothsppchat.ts" />
<None Include="translations\Makefile" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="src\applicationui.cpp" />
<ClCompile Include="src\BTController.cpp" />
<ClCompile Include="src\ChatManager.cpp" />
<ClCompile Include="src\DeviceListing.cpp" />
<ClCompile Include="src\LocalDeviceInfo.cpp" />
<ClCompile Include="src\main.cpp" />
<ClCompile Include="src\RemoteDeviceInfo.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\applicationui.hpp" />
<ClInclude Include="src\BTController.hpp" />
<ClInclude Include="src\ChatManager.hpp" />
<ClInclude Include="src\DeviceListing.hpp" />
<ClInclude Include="src\LocalDeviceInfo.hpp" />
<ClInclude Include="src\RemoteDeviceInfo.hpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>