Skip to content

Commit f12dfee

Browse files
authored
Merge pull request #32 from qualcomm/legacy-tools
2 parents 473442a + 7a6d693 commit f12dfee

43 files changed

Lines changed: 12765 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
*.symvers
1111
*.cache.mk
1212

13+
*.aps
1314
*.obj
1415
*.pdb
1516
*.idb
@@ -28,5 +29,7 @@
2829
[Ll]ogs/
2930
[Dd]ebug/
3031
[Rr]elease/
32+
[Dd]ebug_EXE/
33+
[Rr]elease_EXE/
3134

3235
RCa*

src/windows/tools/qcdev/qcdev.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio Version 16
3+
VisualStudioVersion = 16.0.31321.278
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qcdev", "qcdev.vcxproj", "{351DA988-07E9-4A1B-9ADC-5DECFE5493C6}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Win32 = Debug|Win32
10+
Release|Win32 = Release|Win32
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{351DA988-07E9-4A1B-9ADC-5DECFE5493C6}.Debug|Win32.ActiveCfg = Debug|Win32
14+
{351DA988-07E9-4A1B-9ADC-5DECFE5493C6}.Debug|Win32.Build.0 = Debug|Win32
15+
{351DA988-07E9-4A1B-9ADC-5DECFE5493C6}.Release|Win32.ActiveCfg = Release|Win32
16+
{351DA988-07E9-4A1B-9ADC-5DECFE5493C6}.Release|Win32.Build.0 = Release|Win32
17+
{351DA988-07E9-4A1B-9ADC-5DECFE5493C6}.Release|Win32.Deploy.0 = Release|Win32
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {54B448FC-3AF0-4EF5-A89A-BB6B10639B0B}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
</ItemGroup>
13+
<PropertyGroup Label="Globals">
14+
<ProjectGuid>{351DA988-07E9-4A1B-9ADC-5DECFE5493C6}</ProjectGuid>
15+
<Keyword>Win32Proj</Keyword>
16+
<RootNamespace>qcdev</RootNamespace>
17+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
18+
<ProjectName>qcdev</ProjectName>
19+
</PropertyGroup>
20+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
21+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
22+
<ConfigurationType>DynamicLibrary</ConfigurationType>
23+
<UseDebugLibraries>true</UseDebugLibraries>
24+
<PlatformToolset>v142</PlatformToolset>
25+
<CharacterSet>Unicode</CharacterSet>
26+
</PropertyGroup>
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
28+
<ConfigurationType>DynamicLibrary</ConfigurationType>
29+
<UseDebugLibraries>false</UseDebugLibraries>
30+
<PlatformToolset>v142</PlatformToolset>
31+
<CharacterSet>Unicode</CharacterSet>
32+
</PropertyGroup>
33+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
34+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
35+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36+
</ImportGroup>
37+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
38+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
39+
</ImportGroup>
40+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
41+
<LinkIncremental>true</LinkIncremental>
42+
</PropertyGroup>
43+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
44+
<LinkIncremental>false</LinkIncremental>
45+
</PropertyGroup>
46+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
47+
<ClCompile>
48+
<WarningLevel>Level3</WarningLevel>
49+
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;QCDEVLIB_EXPORTS;TOOLS_TARGET_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
50+
</ClCompile>
51+
<Link>
52+
<SubSystem>Windows</SubSystem>
53+
<GenerateDebugInformation>true</GenerateDebugInformation>
54+
<AdditionalDependencies>setupapi.lib;Shlwapi.lib;Cfgmgr32.lib;%(AdditionalDependencies)</AdditionalDependencies>
55+
</Link>
56+
</ItemDefinitionGroup>
57+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
58+
<ClCompile>
59+
<WarningLevel>Level3</WarningLevel>
60+
<FunctionLevelLinking>true</FunctionLevelLinking>
61+
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;QCDEVLIB_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
62+
</ClCompile>
63+
<Link>
64+
<SubSystem>Windows</SubSystem>
65+
<GenerateDebugInformation>DebugFull</GenerateDebugInformation>
66+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
67+
<OptimizeReferences>true</OptimizeReferences>
68+
<AdditionalDependencies>setupapi.lib;Shlwapi.lib;Cfgmgr32.lib;%(AdditionalDependencies)</AdditionalDependencies>
69+
</Link>
70+
</ItemDefinitionGroup>
71+
<ItemGroup>
72+
<ClCompile Include="qdaio.cpp" />
73+
<ClCompile Include="qddll.cpp" />
74+
<ClCompile Include="scandev.cpp" />
75+
</ItemGroup>
76+
<ItemGroup>
77+
<ClInclude Include="qdaio.h" />
78+
<ClInclude Include="qddll.h" />
79+
<ClInclude Include="qdpublic.h" />
80+
<ClInclude Include="resource.h" />
81+
<ClInclude Include="scandev.h" />
82+
<ClInclude Include="utils.h" />
83+
</ItemGroup>
84+
<ItemGroup>
85+
<ResourceCompile Include="resource.rc" />
86+
</ItemGroup>
87+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
88+
</Project>

0 commit comments

Comments
 (0)