Announcement

Collapse
No announcement yet.

What do you use for C++ Development

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    What do you use for C++ Development

    Hello All,

    I am new to this forum so sorry about if myquestion is already asked.

    My question is, what do you use for C++ development on Kubuntu, and how do you install it?

    Thanks


    #2
    Re: What do you use for C++ Development

    You can use a lot of things for C++ development like I do but I use KDevelop, which is in universe, so make sure it's enabled in your /etc/apt/sources,list (by removing the '#' in front of the 'deb'):

    `kdesu kate /etc/apt/sources.list'
    Then update your package lists:
    `sudo apt-get update'
    Then install it:
    `sudo apt-get install kdevelop3'

    It should then be located in your K-Menu -> Development section.

    I also use Kate for small things.

    Comment


      #3
      Re: What do you use for C++ Development

      Most of the time I just use emacs.

      Even at work where we are developing on Windows with MSVC, I edit in emacs and just use MSVC to define the projects. Even get emacs to start the build and use ClearCase

      Alternatively I use Kate. Anything that colours the syntax really. I find looking at uncoloured C++ boring now.
      Blog: Tasty Tidbits

      Comment


        #4
        Re: What do you use for C++ Development

        Originally posted by Patrick
        You can use a lot of things for C++ development like I do but I use KDevelop, which is in universe, so make sure it's enabled in your /etc/apt/sources,list (by removing the '#' in front of the 'deb'):

        `kdesu kate /etc/apt/sources.list'
        Then update your package lists:
        `sudo apt-get update'
        Then install it:
        `sudo apt-get install kdevelop3'

        It should then be located in your K-Menu -> Development section.

        I also use Kate for small things.
        GREAT! Thanks a lot!

        Comment

        Working...
        X