mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-12-09 08:51:18 +08:00
ac9aaeeff0
Add integration rules in order to use NASM seamlessly in your VS2k8. Signed-off-by: Henry Tumblin <htumblin@users.sourceforge.net> Signed-off-by: Frank Kotler <fbkotler@zytor.com> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
80 lines
2.4 KiB
XML
80 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<VisualStudioToolFile
|
|
Name="Netwide Macro Assembler"
|
|
Version="8.00"
|
|
>
|
|
<Rules>
|
|
<CustomBuildRule
|
|
Name="NASM"
|
|
DisplayName="Netwide Macro Assembler"
|
|
CommandLine="nasm.exe -f win32 -Xvc [AllOptions] [AdditionalOptions] [Inputs]"
|
|
Outputs="[$ObjectFileName]"
|
|
FileExtensions="*.asm"
|
|
ExecutionDescription="Assembling..."
|
|
>
|
|
<Properties>
|
|
<StringProperty
|
|
Name="ObjectFileName"
|
|
DisplayName="Object File Name"
|
|
PropertyPageName="Object File"
|
|
Description="Specifies the name of the output object file. (-o [file])"
|
|
HelpURL="http://www.nasm.us/doc/"
|
|
Switch="-o "[value]""
|
|
DefaultValue="$(IntDir)\$(InputName).obj"
|
|
/>
|
|
<StringProperty
|
|
Name="PreprocessorDefinitions"
|
|
DisplayName="Preprocessor Definitions"
|
|
Description="Defines a text macro with the given name. (-D[symbol])"
|
|
HelpURL="http://www.nasm.us/doc/"
|
|
Switch="-D[value]"
|
|
Delimited="false"
|
|
Inheritable="true"
|
|
/>
|
|
<StringProperty
|
|
Name="UndefinePreprocessorDefinitions"
|
|
DisplayName="Undefine Preprocessor Definitions"
|
|
Description="Undefines a text macro with the given name. (-U[symbol])"
|
|
HelpURL="http://www.nasm.us/doc/"
|
|
Switch="-U[value]"
|
|
Delimited="false"
|
|
Inheritable="true"
|
|
/>
|
|
<StringProperty
|
|
Name="AssembledCodeListingFile"
|
|
DisplayName="Assembled Code Listing File"
|
|
PropertyPageName="Listing File"
|
|
Description="Generates an assembled code listing file. (-l [file])"
|
|
HelpURL="http://www.nasm.us/doc/"
|
|
Switch="-l "[value]""
|
|
/>
|
|
<StringProperty
|
|
Name="IncludePaths"
|
|
DisplayName="Include Paths"
|
|
Description="Sets path for include file. (-I[path])"
|
|
HelpURL="http://www.nasm.us/doc/"
|
|
Switch="-I[value]"
|
|
Delimited="false"
|
|
Inheritable="true"
|
|
/>
|
|
<BooleanProperty
|
|
Name="TreatWarningsAsErrors"
|
|
DisplayName="Treat Warnings As Errors"
|
|
Description="Returns an error code if warnings are generated. (-Werror)"
|
|
HelpURL="http://www.nasm.us/doc/"
|
|
Switch="-Werror"
|
|
/>
|
|
<BooleanProperty
|
|
Name="GenerateDebugInformation"
|
|
DisplayName="Generate Debug Information"
|
|
Description="Generates Debug Information. (-g)"
|
|
HelpURL="http://www.nasm.us/doc/"
|
|
Switch="-g"
|
|
DefaultValue="true"
|
|
/>
|
|
|
|
</Properties>
|
|
</CustomBuildRule>
|
|
</Rules>
|
|
</VisualStudioToolFile>
|