CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2011
    Posts
    19

    Custom Linking in Microsoft visual Studio

    Hi,

    I am new in the MS Visual Studio.Please help me how would i do the following.

    I would like to set the rules for custom linking during the build process.Lets say I have five source files and I compiled it and generated object file. The the thing I would like to know is setting the following unix equivalent rule in visual studio :

    target: a.o b.o c.ob -lm -O target

    Thanks in advance.

  2. #2
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,620

    Re: Custom Linking in Microsoft visual Studio

    link a.obj b.obj c.obj /out:target
    Best regards,
    Igor

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured