forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharmasm.props
23 lines (23 loc) · 1.2 KB
/
armasm.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup
Condition="'$(ARMASMBeforeTargets)' == '' and '$(ARMASMAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
<ARMASMBeforeTargets>Midl</ARMASMBeforeTargets>
<ARMASMAfterTargets>CustomBuild</ARMASMAfterTargets>
</PropertyGroup>
<ItemDefinitionGroup>
<ARMASM>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ObjectFileName>$(IntDir)%(FileName).obj</ObjectFileName>
<PPFileName>$(IntDir)%(FileName).i</PPFileName>
<ErrorReporting>0</ErrorReporting>
<CommandLineTemplate Condition="'$(Platform)' == 'Arm'">armasm.exe [AllOptions] [AdditionalOptions] [Inputs]</CommandLineTemplate>
<CommandLineTemplate Condition="'$(Platform)' == 'Arm64'">armasm64.exe [AllOptions] [AdditionalOptions] [Inputs]</CommandLineTemplate>
<CommandLineTemplate Condition="'$(Platform)' != 'Arm' AND '$(Platform)' != 'Arm64'">
echo ARMASM not supported on this platform
exit 1
</CommandLineTemplate>
<ExecutionDescription>Assembling %(Identity)...</ExecutionDescription>
</ARMASM>
</ItemDefinitionGroup>
</Project>