Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. How to automate VC++ builds

How to automate VC++ builds

Scheduled Pinned Locked Moved C / C++ / MFC
csharpc++visual-studiotutorialquestion
10 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    cagespear
    wrote on last edited by
    #1

    Hi.. Just wanted some info on ways to automate VC++ builds. I am using Visual Studio .NET 2003. Maybe some command line switches of devenv.exe ? Regards Amit

    H J 2 Replies Last reply
    0
    • C cagespear

      Hi.. Just wanted some info on ways to automate VC++ builds. I am using Visual Studio .NET 2003. Maybe some command line switches of devenv.exe ? Regards Amit

      H Offline
      H Offline
      Haroon Sarwar
      wrote on last edited by
      #2

      run devenv.exe /?

      C 1 Reply Last reply
      0
      • C cagespear

        Hi.. Just wanted some info on ways to automate VC++ builds. I am using Visual Studio .NET 2003. Maybe some command line switches of devenv.exe ? Regards Amit

        J Offline
        J Offline
        jhwurmbach
        wrote on last edited by
        #3

        cagespear wrote:

        Just wanted some info on ways to automate VC++ builds. Maybe some command line switches of devenv.exe ?

        Yes. Thats the easiest way to go. Alternatively, you could use a totally different build system like Microsofts nmake, scons or jam.

        Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all.
        Douglas Adams, "Dirk Gently's Holistic Detective Agency"

        M C 2 Replies Last reply
        0
        • J jhwurmbach

          cagespear wrote:

          Just wanted some info on ways to automate VC++ builds. Maybe some command line switches of devenv.exe ?

          Yes. Thats the easiest way to go. Alternatively, you could use a totally different build system like Microsofts nmake, scons or jam.

          Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all.
          Douglas Adams, "Dirk Gently's Holistic Detective Agency"

          M Offline
          M Offline
          Matthew Faithfull
          wrote on last edited by
          #4

          As you mentioned it, have you ever got Jam to work? I tried it for building the Boost library and couldn't get anywhere with it. Do you perhaps know of any good tutorials for it?

          Nothing is exactly what it seems but everything with seems can be unpicked.

          J 1 Reply Last reply
          0
          • M Matthew Faithfull

            As you mentioned it, have you ever got Jam to work? I tried it for building the Boost library and couldn't get anywhere with it. Do you perhaps know of any good tutorials for it?

            Nothing is exactly what it seems but everything with seems can be unpicked.

            J Offline
            J Offline
            jhwurmbach
            wrote on last edited by
            #5

            Matthew Faithfull wrote:

            As you mentioned it, have you ever got Jam to work?

            Actually, no. But it pops up in every review on build systems. We used SCONS, and it worked. Now, we are more and more switching to .NET and NANT.

            Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all.
            Douglas Adams, "Dirk Gently's Holistic Detective Agency"

            M 1 Reply Last reply
            0
            • J jhwurmbach

              Matthew Faithfull wrote:

              As you mentioned it, have you ever got Jam to work?

              Actually, no. But it pops up in every review on build systems. We used SCONS, and it worked. Now, we are more and more switching to .NET and NANT.

              Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all.
              Douglas Adams, "Dirk Gently's Holistic Detective Agency"

              M Offline
              M Offline
              Matthew Faithfull
              wrote on last edited by
              #6

              Thanks, I'll check out SCONS at some point.

              Nothing is exactly what it seems but everything with seems can be unpicked.

              J 1 Reply Last reply
              0
              • M Matthew Faithfull

                Thanks, I'll check out SCONS at some point.

                Nothing is exactly what it seems but everything with seems can be unpicked.

                J Offline
                J Offline
                jhwurmbach
                wrote on last edited by
                #7

                You know this review[^]?

                Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all.
                Douglas Adams, "Dirk Gently's Holistic Detective Agency"

                M 1 Reply Last reply
                0
                • J jhwurmbach

                  You know this review[^]?

                  Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all.
                  Douglas Adams, "Dirk Gently's Holistic Detective Agency"

                  M Offline
                  M Offline
                  Matthew Faithfull
                  wrote on last edited by
                  #8

                  Nice article, thanks. I guess I'm not the only one who's had trouble with Jam then. Unfortunately I hate and am hopeless with make as well which is really disabling me from doing proper cross platform development. I guess I'm going to have to spend some time with a hefty make tutorial and write my own front end...Hmm XML to make using a recursive decent parser ... Visual Studio solution to platform indpendent XML using XSLT ... Visual Studio AddIn to export ... GCC build for MinGW ... :sigh: next time I've got a spare month :doh:

                  Nothing is exactly what it seems but everything with seems can be unpicked.

                  1 Reply Last reply
                  0
                  • H Haroon Sarwar

                    run devenv.exe /?

                    C Offline
                    C Offline
                    cagespear
                    wrote on last edited by
                    #9

                    Thanks a ton Haroon! I was able to do my job

                    1 Reply Last reply
                    0
                    • J jhwurmbach

                      cagespear wrote:

                      Just wanted some info on ways to automate VC++ builds. Maybe some command line switches of devenv.exe ?

                      Yes. Thats the easiest way to go. Alternatively, you could use a totally different build system like Microsofts nmake, scons or jam.

                      Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all.
                      Douglas Adams, "Dirk Gently's Holistic Detective Agency"

                      C Offline
                      C Offline
                      cagespear
                      wrote on last edited by
                      #10

                      Wow! You have given a lot of stuff to read/know about, thanks dude!

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups