summaryrefslogtreecommitdiff
path: root/clr.native.targets
diff options
context:
space:
mode:
Diffstat (limited to 'clr.native.targets')
-rw-r--r--clr.native.targets31
1 files changed, 31 insertions, 0 deletions
diff --git a/clr.native.targets b/clr.native.targets
new file mode 100644
index 0000000000..cd2a52218f
--- /dev/null
+++ b/clr.native.targets
@@ -0,0 +1,31 @@
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Clean Include="@(PreprocessAssembleArm->'$(IntermediateOutputPath)%(Filename).obj')"/>
+ </ItemGroup>
+
+ <Target Name="PreprocessAssembleArm"
+ BeforeTargets="CppPreprocess"
+ Condition="@(PreprocessAssembleArm) != ''"
+ Inputs="@(PreprocessAssembleArm)"
+ Outputs="@(PreprocessAssembleArm->'$(IntermediateOutputPath)%(Filename).obj')">
+ <CL Condition="'%(PreprocessAssembleArm.Identity)' != ''"
+ AdditionalIncludeDirectories="$(UserIncludes);$(SdkIncPath);%(PreprocessAssembleArm.Includes)"
+ AdditionalOptions="%(PreprocessAssembleArm.AdditionalOptions)"
+ ForcedIncludeFiles="%(PreprocessAssembleArm.ForceInclude)"
+ MinimalRebuildFromTracking="$(Internal_MinimalRebuildFromTracking)"
+ PreprocessorDefinitions="%(PreprocessAssembleArm.Defines);@(CommonPreprocessDefines);$(ClDefines)"
+ PreprocessOutputPath ="$(IntermediateOutputPath)"
+ PreprocessSuppressLineNumbers="true"
+ PreprocessToFile="true"
+ Sources="@(PreprocessAssembleArm)"
+ TLogReadFiles="@(ClTLogReadFile)"
+ TLogWriteFiles="@(ClTLogWriteFile)"
+ ToolExe="$(ClToolExe)"
+ ToolPath="$(ClToolPath)"
+ TrackerLogDirectory="$(IntermediateOutputDirectory)"
+ TrackFileAccess="$(TrackFileAccess)"
+ >
+ </CL>
+ </Target>
+
+</Project>