diff options
author | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-12 15:14:36 +0900 |
---|---|---|
committer | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-12 15:14:36 +0900 |
commit | 993d65531741fccf26fc10fc5789a5c9fca8c5ae (patch) | |
tree | 996be9095a97ff2aac0d98963b6044d47a0ec60c /contrib/VSrules/nasm.rules | |
parent | 65c26d26fb72cec0d43d199c72ed27513d17f4c9 (diff) | |
download | nasm-tizen_2.1.tar.gz nasm-tizen_2.1.tar.bz2 nasm-tizen_2.1.zip |
Tizen 2.1 basesubmit/tizen_2.2/20130710.072957submit/tizen_2.1/20130423.103612accepted/tizen_2.1/20130423.1515012.1b_releasetizen_2.1
Diffstat (limited to 'contrib/VSrules/nasm.rules')
-rw-r--r-- | contrib/VSrules/nasm.rules | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/contrib/VSrules/nasm.rules b/contrib/VSrules/nasm.rules new file mode 100644 index 0000000..79b4fb1 --- /dev/null +++ b/contrib/VSrules/nasm.rules @@ -0,0 +1,79 @@ +<?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> |