Skip to content

Commit 9499625

Browse files
Various Build Fixes
Fix for WiX library and merge module. Also fix for debug builds and ConcreteMiddleWare.cpp
1 parent 5606eeb commit 9499625

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

IntelPresentMon/PMInstallerLib/PMInstallerLib.wixproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<IntermediateOutputPath>obj\</IntermediateOutputPath>
77
<OutputPath>bin\</OutputPath>
88
<!-- Point these at YOUR WiX 3.x install -->
9-
<WixToolPath>C:\Program Files (x86)\WiX Toolset v3.11\bin\</WixToolPath>
9+
<WixToolPath>$(WIX)bin\</WixToolPath>
1010
<WixTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
1111
<!-- Define the two variables your .wxs uses -->
1212
<DefineConstants>

IntelPresentMon/PresentMonMiddleware/PresentMonMiddleware.vcxproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121
<ClInclude Include="MockCommon.h" />
2222
</ItemGroup>
2323
<ItemGroup>
24-
<ClCompile Include="ConcreteMiddleware.cpp" />
24+
<ClCompile Include="ConcreteMiddleware.cpp">
25+
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">/bigobj %(AdditionalOptions)</AdditionalOptions>
26+
</ClCompile>
2527
<ClCompile Include="FrameEventQuery.cpp" />
2628
<ClCompile Include="LogSetup.cpp" />
2729
</ItemGroup>

IntelPresentMon/ServiceMergeModule/ServiceMergeModule.wixproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<IntermediateOutputPath>obj\</IntermediateOutputPath>
77
<OutputPath>$(SolutionDir)build\$(Configuration)\en-us\</OutputPath>
88
<!-- Point to your WiX 3.11 install -->
9-
<WixToolPath>C:\Program Files (x86)\WiX Toolset v3.11\bin\</WixToolPath>
9+
<WixToolPath>$(WIX)bin\</WixToolPath>
1010
<WixTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
1111
<!-- If your wixlib expects a specific DirectoryRef Id -->
1212
<DefineConstants>PM.ServiceDirId=service_folder</DefineConstants>

0 commit comments

Comments
 (0)