-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNotebook.vcxproj
83 lines (83 loc) · 3.52 KB
/
Notebook.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
<?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>{3CEDBFD4-F854-448B-B607-63F1E27D1554}</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>bbpim;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|BlackBerry'">
<Link>
<AdditionalDependencies>bbpim;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<None Include="assets\images\action_addnote.png" />
<None Include="assets\images\action_editnote.png" />
<None Include="assets\images\background.png" />
<None Include="assets\main.qml" />
<None Include="assets\NoteEditor.qml" />
<None Include="assets\NoteViewer.qml" />
<None Include="assets\ViewerField.qml" />
<None Include="bar-descriptor.xml" />
<None Include="config.pri" />
<None Include="device-assets.xml" />
<None Include="icon.png" />
<None Include="LICENSE" />
<None Include="Makefile" />
<None Include="notebook.pro" />
<None Include="readme.txt" />
<None Include="translations\Makefile" />
<None Include="translations\notebook.pro" />
<None Include="translations\notebook.ts" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="src\applicationui.cpp" />
<ClCompile Include="src\main.cpp" />
<ClCompile Include="src\NoteBook.cpp" />
<ClCompile Include="src\NoteEditor.cpp" />
<ClCompile Include="src\NoteViewer.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\applicationui.hpp" />
<ClInclude Include="src\NoteBook.hpp" />
<ClInclude Include="src\NoteEditor.hpp" />
<ClInclude Include="src\NoteViewer.hpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>