Thread: Isn`t fashion to deliver the project file, is it?

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

    Isn`t fashion to deliver the project file, is it?

    I did look into a few C++ Open Source projects. None of them did include a project file of some ide.

    Why them get removed?

  2. #2
    Amazingly beautiful user.
    Join Date
    Jul 2005
    Location
    If you knew I'd have to kill you
    Posts
    254
    Most of them use AutoMake to build. A lot of them don't build it under something like Visual Studio, but prefer using the command line. Even if they did, AutoMake is guaranteed to work in more places than an IDE project file, as it configures things for the operating system.
    Programming Your Mom. http://www.dandongs.com/

  3. #3
    Officially An Architect brewbuck's Avatar
    Join Date
    Mar 2007
    Location
    Portland, OR
    Posts
    7,396
    Quote Originally Posted by sept View Post
    I did look into a few C++ Open Source projects. None of them did include a project file of some ide.
    There is no appropriate IDE choice when distributing a project in source code form. The develop cannot know what kind of IDE the end user has, if they have one at all. Therefore the build relies only on the most commonly present utilities -- the compiler, the shell, and the 'make' utility.

    That's not to say that none of the developers use an IDE. But the IDE is typically not used to generate build systems, only for code editing and debugging.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Need Help Fixing My C Program. Deals with File I/O
    By Matus in forum C Programming
    Replies: 7
    Last Post: 04-29-2008, 07:51 PM
  2. Can we have vector of vector?
    By ketu1 in forum C++ Programming
    Replies: 24
    Last Post: 01-03-2008, 05:02 AM
  3. gcc link external library
    By spank in forum C Programming
    Replies: 6
    Last Post: 08-08-2007, 03:44 PM
  4. Encryption program
    By zeiffelz in forum C Programming
    Replies: 1
    Last Post: 06-15-2005, 03:39 AM
  5. archive format
    By Nor in forum A Brief History of Cprogramming.com
    Replies: 0
    Last Post: 08-05-2003, 07:01 PM