diff options
author | Henry Tumblin <htumblin@users.sourceforge.net> | 2009-09-25 18:25:57 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2009-09-25 20:49:51 +0400 |
commit | ac9aaeeff0745290846deb2f3d3b7b1628b68c0d (patch) | |
tree | 1f14156f6e5b9ef89d101b3eb2dbaf2597e4db0b /contrib | |
parent | 81d07c127dbc1f88c7db8e41fb293b872946df16 (diff) | |
download | nasm-ac9aaeeff0745290846deb2f3d3b7b1628b68c0d.tar.gz nasm-ac9aaeeff0745290846deb2f3d3b7b1628b68c0d.tar.bz2 nasm-ac9aaeeff0745290846deb2f3d3b7b1628b68c0d.zip |
Visual Studio 2008 NASM integration
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>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/VSrules/nasm.README | 16 | ||||
-rw-r--r-- | contrib/VSrules/nasm.rules | 79 |
2 files changed, 95 insertions, 0 deletions
diff --git a/contrib/VSrules/nasm.README b/contrib/VSrules/nasm.README new file mode 100644 index 0000000..8fbf155 --- /dev/null +++ b/contrib/VSrules/nasm.README @@ -0,0 +1,16 @@ + Visual Studio 2008 NASM integration + + +In order to use nasm seamlessly in your VS2k8, follow the steps below. + +1. First install nasm by running its installer +2. copy nasm.rules to c:\Program Files\Microsoft Visual Studio 2008\VC\VCProjectDefaults +3. Start Visual Studio 2008 +4. go to Tools->Options->VC++ Directories +5. click on Show Directories for Executables +6. add C:\Program Files\NASM to the list of paths +7. Open a solution that you want to use NASM with +8. Right click on the project name and select Custom Build Rules +9. Check the box next to the NASM line +10. Add any .asm files to the project +11. click on build to test 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> |