Click here to Skip to main content
15,895,779 members
Articles / Programming Languages / ASM

Integrating a compiler/assembler in VS ; Using NASM with Visual Studio 2010

Rate me:
Please Sign up or sign in to vote.
5.00/5 (11 votes)
9 Jul 2012CPOL10 min read 94.5K   2.9K   29  
A simple technique to integrate a custom build tool in VS 2010.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NASM", "NASM\NASM.vcxproj", "{614DF965-DCC9-4AA3-88E1-4515E1B7509E}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{614DF965-DCC9-4AA3-88E1-4515E1B7509E}.Debug|Win32.ActiveCfg = Debug|Win32
		{614DF965-DCC9-4AA3-88E1-4515E1B7509E}.Debug|Win32.Build.0 = Debug|Win32
		{614DF965-DCC9-4AA3-88E1-4515E1B7509E}.Release|Win32.ActiveCfg = Release|Win32
		{614DF965-DCC9-4AA3-88E1-4515E1B7509E}.Release|Win32.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions