qt development on linux using eclipse?

后端 未结 2 1943
走了就别回头了
走了就别回头了 2020-12-19 23:29

In Linux, How can I create QT applications in Eclipse? I\'ve seen some integration plugins in eclipse.org however it seems they are discontinued and not supported anymore.

2条回答
  •  悲&欢浪女
    2020-12-20 00:22

    I'd recommend using Qt Creator. Before I started with Qt development, I was also using Eclipse for a while, as well as Visual Studio. I tried to keep using these with Qt, but I ended up switching to Creator. It was weird at first, but once you get used to it, it's much better (especially for developing Qt applications).

    With Qt Creator, you can develop standalone C++ applications that aren't using Qt. You have the choice of three build systems (that I know of): qmake, qbs and cmake.

    As for developing big applications, many companies using Qt do so. Qt Creator itself (which is a massive project) is developed with Qt Creator. :)

    A nice part about Creator is that a large portion of the development comes from third party contributors, so there's reassurance that it's easy to contribute patches for things you want to see added and/or fixed.

    To get started, download it from here.

提交回复
热议问题