Page 9 of 9 FirstFirst ... 789
Results 161 to 166 of 166

Thread: QDevelop, a new IDE for Qt4

  1. #161
    Join Date
    Jun 2008
    Posts
    9
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: QDevelop, a new IDE for Qt4

    Quote Originally Posted by triperzonak View Post
    try completing the location like src -> c:\myproject\src
    What do you mean by that? I'm confused. If you're talking about compiling the program, I have not been able to successfully compile it. I may have too new of a version of Qt. I'm using Qt 4.4.0 currently.

  2. #162
    Join Date
    Dec 2007
    Posts
    129
    Thanks
    5
    Thanked 1 Time in 1 Post
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Talking Re: QDevelop, a new IDE for Qt4

    im talking about adding new item, like .h or .cpp .ui etc. in "location" complete the path.

    maybe you will found some bug in qdevelop when you are using qt 4.4 to qdevelop.0.25 but im sure qdevelop team will fix it. its only a matter of time, i think they are contestants in the contest thats y they are bz..

  3. #163
    Join Date
    Jul 2006
    Location
    Atlanta, GA
    Posts
    86
    Thanks
    26
    Thanked 6 Times in 6 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Question Re: QDevelop, a new IDE for Qt4

    So is QDevelop dead? I haven't seen any updates since Dec 2007.
    fnmblot
    --------------------------------------
    Gee Ricky, I'm sorry your mom blew up.

  4. #164
    Join Date
    Sep 2008
    Posts
    11
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: QDevelop, a new IDE for Qt4

    I compiled the qdevelop 0.25 from svn with Qt 4.4.1 and mingw 5.1.4 under windows and I get this really strange bug:

    comment the following line with CTRL+D ( '|' marks the cursor location )
    Qt Code:
    1. foo = |bar( baz );
    To copy to clipboard, switch view to plain text mode 
    and I get the following:
    Qt Code:
    1. foo = //foo = bar(baz);bar(baz);|
    To copy to clipboard, switch view to plain text mode 
    This also hapens with qdevelop compiled from latest svn ( rev 335 )
    This is with Win XP SP2.

    Has anyone already compiled qdevelop from source with Qt4.4.1? I wonder if this some Qt bug or incompatibility because I didn't touch the sources before compilation...

    cheers,
    --to

  5. #165
    Join Date
    Feb 2009
    Posts
    2

    Default Re: QDevelop, a new IDE for Qt4

    I have been working with QDevevlop on Linux without any problems. I have to switch to Windows for this project (WinXP).
    I installed:
    mingw 3.4.2
    qt 4.4.3
    and QDevelop 0.26
    Added : C:\MinGW\bin to the path

    I created a new project name test1. When I try to build it I get:

    Update project (qmake test1.pro)...
    Clean Project (make clean)...
    C:/MinGW/bin/mingw32-make.exe -f Makefile.Release clean
    mingw32-make.exe[1]: Entering directory `C:/Documents and Settings/mzviman1/My Documents/ProgrammingProjects/test1'
    del build\moc_dialogimpl.cpp
    del build\ui_dialog.h
    del build\dialogimpl.o build\main.o build\moc_dialogimpl.o
    mingw32-make.exe[1]: Leaving directory `C:/Documents and Settings/mzviman1/My Documents/ProgrammingProjects/test1'
    C:/MinGW/bin/mingw32-make.exe -f Makefile.Debug clean
    Could Not Find C:\Documents and Settings\mzviman1\My Documents\ProgrammingProjects\test1\build\moc_dial ogimpl.cpp
    Could Not Find C:\Documents and Settings\mzviman1\My Documents\ProgrammingProjects\test1\build\dialogim pl.o
    mingw32-make.exe[1]: Entering directory `C:/Documents and Settings/mzviman1/My Documents/ProgrammingProjects/test1'
    del build\moc_dialogimpl.cpp
    del build\ui_dialog.h
    Could Not Find C:\Documents and Settings\mzviman1\My Documents\ProgrammingProjects\test1\build\moc_dial ogimpl.cpp
    Could Not Find C:\Documents and Settings\mzviman1\My Documents\ProgrammingProjects\test1\build\ui_dialo g.h
    del build\dialogimpl.o build\main.o build\moc_dialogimpl.o
    Could Not Find C:\Documents and Settings\mzviman1\My Documents\ProgrammingProjects\test1\build\dialogim pl.o
    mingw32-make.exe[1]: Leaving directory `C:/Documents and Settings/mzviman1/My Documents/ProgrammingProjects/test1'
    Build (make)...
    C:/MinGW/bin/mingw32-make.exe -f Makefile.Release
    mingw32-make.exe[1]: Entering directory `C:/Documents and Settings/mzviman1/My Documents/ProgrammingProjects/test1'
    c:\Qt\4.4.3\bin\uic.exe ui\dialog.ui -o build\ui_dialog.h
    g++ -c -O2 -Wall -frtti -fexceptions -mthreads -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"c:\Qt\4.4.3\include\QtCore" -I"c:\Qt\4.4.3\include\QtCore" -I"c:\Qt\4.4.3\include\QtGui" -I"c:\Qt\4.4.3\include\QtGui" -I"c:\Qt\4.4.3\include" -I"c:\Qt\4.4.3\include\ActiveQt" -I"build" -I"build" -I"c:\Qt\4.4.3\mkspecs\default" -o build\dialogimpl.o src\dialogimpl.cpp
    mingw32-make.exe[1]: Leaving directory `C:/Documents and Settings/mzviman1/My Documents/ProgrammingProjects/test1'
    'g++' is not recognized as an internal or external command,
    operable program or batch file.
    mingw32-make.exe[1]: *** [build/dialogimpl.o] Error 1
    C:\MinGW\bin\mingw32-make.exe: *** [release] Error 2
    ---------------------- Build finished with 2 error(s) ----------------------

    Following a suggestion on the web I copied g++.exe to the qt\bin directory.

    What should I do next. BTW, all the external tools check OK.

    Thanks,
    Muz

  6. #166
    Join Date
    Jan 2006
    Posts
    156
    Thanked 12 Times in 12 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: QDevelop, a new IDE for Qt4

    Hello,
    Please install the last 0.27 version available on qdevelop.org. A problem with spaces in directory names is fixed with this version.
    QDevelop, an complete Integrated Development Environment for Qt 4: http://qdevelop.org

Similar Threads

  1. QDevelop SQLite Driver Issue
    By Phan Sin Tian in forum Qt-based Software
    Replies: 4
    Last Post: 1st August 2010, 12:47
  2. QDevelop 0.22
    By jlbrd in forum Qt-based Software
    Replies: 5
    Last Post: 5th May 2007, 14:03
  3. QDevelop - current development
    By ghorwin in forum Qt-based Software
    Replies: 2
    Last Post: 30th March 2007, 15:54
  4. Getting QDevelop to work
    By db in forum Newbie
    Replies: 3
    Last Post: 20th March 2007, 03:25
  5. g++ with qdevelop
    By spx2 in forum Qt Programming
    Replies: 2
    Last Post: 19th December 2006, 10:55

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.