mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 09:43:04 +00:00

msvc backend: - Start implementing real support for vcxproj files - Fix generating sln files - Move msvc rules in a separate folder - Various fixes svn path=/trunk/; revision=47511
44 lines
1.1 KiB
XML
44 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<VisualStudioToolFile
|
|
Name="s as (gnu_as mscpp)"
|
|
Version="8,00"
|
|
>
|
|
<Rules>
|
|
<CustomBuildRule
|
|
Name="s_as_mscpp"
|
|
DisplayName="s (gnu_as mscpp)"
|
|
CommandLine="cl /nologo /E [sIncPaths] [sPPDefs] "$(InputPath)" | "$(RosBE)\i386\bin\as" -o [sOutF]"
|
|
Outputs="[$sOutF]"
|
|
FileExtensions="*.s"
|
|
ExecutionDescription="Assembling "
|
|
>
|
|
<Properties>
|
|
<StringProperty
|
|
Name="sOutF"
|
|
DisplayName="Obj File"
|
|
Description="Obj File (-o [file])"
|
|
Switch=""[value]""
|
|
DefaultValue="$(IntDir)\$(InputName).obj"
|
|
/>
|
|
<StringProperty
|
|
Name="sIncPaths"
|
|
DisplayName="Inc Paths"
|
|
Description="Include serach paths (/I [path])"
|
|
Switch="/I "[value]""
|
|
DefaultValue="$(globalIncludes)"
|
|
Delimited="true"
|
|
Inheritable="true"
|
|
/>
|
|
<StringProperty
|
|
Name="sPPDefs"
|
|
DisplayName="Preproc Defs"
|
|
Description="Preprocessor Definitions (/D [symbol])"
|
|
Switch="/D "[value]""
|
|
Delimited="true"
|
|
Inheritable="true"
|
|
/>
|
|
</Properties>
|
|
</CustomBuildRule>
|
|
</Rules>
|
|
</VisualStudioToolFile>
|
|
|