c++ help using vc++

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Betray
    Confirmed User
    • Oct 2002
    • 346

    #1

    c++ help using vc++

    in unix i compile like 'cc a2main.c WWText.c'

    how can i do that in vc++?
  • Betray
    Confirmed User
    • Oct 2002
    • 346

    #2
    im gonna keep bumping this =)

    Comment

    • Betray
      Confirmed User
      • Oct 2002
      • 346

      #3
      im not lying hehe

      Comment

      • Eve
        Confirmed User
        • Dec 2002
        • 805

        #4
        This will take care of your request

        http://www-unix.mcs.anl.gov/mpi/mpic...man/node10.htm

        I would highly recommend getting off of vc++ and using Bloodshed's DevC++ or something similar. VC++ can be a bitch sometimes..
        Hope that helps.
        I'm waiting for the Mr Fushion Fleshlight so I can wank my way back to the future!

        Comment

        • Betray
          Confirmed User
          • Oct 2002
          • 346

          #5
          thx, but isnt there a option inside vc to do this?

          also i know vc can be a pain in the ass... but its something i gotta use

          Comment

          • rnicey
            Registered User
            • Sep 2002
            • 37

            #6
            1. Create a new project
            File->New->Projects
            Choose Win32 console app if it's a DOS style app, or MFCAppWizard/Win32App if it's a proper Windows app.
            On the next page select empty project.
            Hit Finish/OK
            2. On the Project menu select
            Project->Add to project->Files
            for all your source files.

            Press F7, or Build->Build [Project] to compile and link.
            Ctrl+F5 to execute when you're done.

            Robert

            Comment

            Working...