diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2019-01-12 11:11:10 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2019-01-12 11:11:10 -0600 |
commit | 9d5d059a2147aa0fe38f7103148c020b66455e83 (patch) | |
tree | 7673cb14721cf21df43fdfc1c0bcad572817fecc /src/ca/uica.vcxproj | |
parent | de844c32ea0afe45a2deb1b25e6bdd267b7df103 (diff) | |
download | wix-9d5d059a2147aa0fe38f7103148c020b66455e83.tar.gz wix-9d5d059a2147aa0fe38f7103148c020b66455e83.tar.bz2 wix-9d5d059a2147aa0fe38f7103148c020b66455e83.zip |
Import code from old v4 repo
Diffstat (limited to 'src/ca/uica.vcxproj')
-rw-r--r-- | src/ca/uica.vcxproj | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/ca/uica.vcxproj b/src/ca/uica.vcxproj new file mode 100644 index 00000000..92e20e1a --- /dev/null +++ b/src/ca/uica.vcxproj | |||
@@ -0,0 +1,59 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | |||
5 | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
6 | <ItemGroup Label="ProjectConfigurations"> | ||
7 | <ProjectConfiguration Include="Debug|Win32"> | ||
8 | <Configuration>Debug</Configuration> | ||
9 | <Platform>Win32</Platform> | ||
10 | </ProjectConfiguration> | ||
11 | <ProjectConfiguration Include="Release|Win32"> | ||
12 | <Configuration>Release</Configuration> | ||
13 | <Platform>Win32</Platform> | ||
14 | </ProjectConfiguration> | ||
15 | </ItemGroup> | ||
16 | <ItemGroup Label="ProjectConfigurations"> | ||
17 | <ProjectConfiguration Include="Debug|ARM"> | ||
18 | <Configuration>Debug</Configuration> | ||
19 | <Platform>ARM</Platform> | ||
20 | </ProjectConfiguration> | ||
21 | <ProjectConfiguration Include="Release|ARM"> | ||
22 | <Configuration>Release</Configuration> | ||
23 | <Platform>ARM</Platform> | ||
24 | </ProjectConfiguration> | ||
25 | </ItemGroup> | ||
26 | |||
27 | <PropertyGroup Label="Globals"> | ||
28 | <ProjectGuid>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</ProjectGuid> | ||
29 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
30 | <CharacterSet>MultiByte</CharacterSet> | ||
31 | <TargetName>uica</TargetName> | ||
32 | <ProjectModuleDefinitionFile>uica.def</ProjectModuleDefinitionFile> | ||
33 | </PropertyGroup> | ||
34 | |||
35 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.props" /> | ||
36 | |||
37 | <PropertyGroup> | ||
38 | <ProjectAdditionalIncludeDirectories>$(WixRoot)src\libs\dutil\inc;$(WixRoot)src\libs\wcautil</ProjectAdditionalIncludeDirectories> | ||
39 | <ProjectAdditionalLinkLibraries>msi.lib;shlwapi.lib;dutil.lib;wcautil.lib</ProjectAdditionalLinkLibraries> | ||
40 | </PropertyGroup> | ||
41 | |||
42 | <ItemGroup> | ||
43 | <ClCompile Include="dllmain.cpp" /> | ||
44 | <ClCompile Include="DriveCheck.cpp" /> | ||
45 | <ClCompile Include="PrintEula.cpp" /> | ||
46 | </ItemGroup> | ||
47 | <ItemGroup> | ||
48 | <ClInclude Include="cost.h" /> | ||
49 | <ClInclude Include="precomp.h" /> | ||
50 | </ItemGroup> | ||
51 | <ItemGroup> | ||
52 | <None Include="uica.def" /> | ||
53 | </ItemGroup> | ||
54 | <ItemGroup> | ||
55 | <ResourceCompile Include="uica.rc" /> | ||
56 | </ItemGroup> | ||
57 | |||
58 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" /> | ||
59 | </Project> | ||