Thread: Deploying

  1. #1
    Registered User
    Join Date
    Jul 2007
    Posts
    75

    Exclamation Deploying

    Can someone please tell me if there is a way to deploy c++ apps. (small apps < 1000 lines of code) and if there is a way could you please explain how to use it

  2. #2
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    What do you mean by "deploy" - in my vocabulary, that means the same as "distribute to a number of machines". In which case, the fact that the app is written in C++ has very little to do with it - at least I think so - but you may want to make sure that you understand what dependencies the application has (such as .so [unix/linux] or .dll [Windows] files that it needs to work correctly), and how you can distribute to, or ensure that those are on, the target machine.

    --
    Mats

  3. #3
    Registered User
    Join Date
    Jul 2007
    Posts
    75

    Exclamation I want to put in a format

    I want to make it so the exe file is able to be opened on any machine running xp. Currently when I try to run the exe on another machine it says that the side by side configuration is incorrect.

    Thanks

  4. #4
    Registered User
    Join Date
    Jan 2005
    Posts
    7,366
    Are you using standard C++, or something .NET related? If you're using VC++, it can sometimes be tricky to build without .NET dependencies even if you don't need them. Are you using VC++ 2005 (8.0)? Not all machines have the dlls for version 8.0, so you either have to link to the runtime library statically or distribute the dll with your exe.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. deploying glib function
    By MK27 in forum C Programming
    Replies: 2
    Last Post: 12-10-2008, 08:18 PM
  2. Deploying C Application: Help!
    By Nedhue in forum C Programming
    Replies: 5
    Last Post: 02-03-2008, 05:30 AM
  3. Replies: 1
    Last Post: 07-19-2007, 11:47 PM
  4. [Tutorial] Deploying VC++ 2005 Express Apps
    By psychopath in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 05-03-2007, 05:05 AM
  5. Importing/Exporting VS.NET 2003
    By osal in forum C# Programming
    Replies: 1
    Last Post: 09-09-2005, 09:18 AM