Tagged Questions
2
votes
0answers
94 views
Running multiple Qt tests in eclipse
I am setting up tests for a big Qt (4.8.x) project and want to run qt unit tests inside Eclipse (JUNO). Therefor I installed C/C++ Unit Testing Support. I created a sub project which contains 3 test ...
0
votes
1answer
178 views
Instantiate class in DLL throws a 127 error in LoadLibrary in QT
i'm trying to load a DLL in qt using LoadLibrary (only for test instead of QLibrary), the dll was compiled in eclipse CDT, but strangely when i try to instantiate any class in any function inside the ...
0
votes
0answers
110 views
How to use a dll developed in eclipse CDT in a QT application
I want to use a dll that i create in CDT with the following code:
#ifndef DESKTOPWINUTILS_H_
#define DESKTOPWINUTILS_H_
#ifdef __dll__
#define DESKTOPUTILSEXP __declspec(dllexport)
#else
#define ...
0
votes
0answers
82 views
Unable to set the include parser in Eclipse 4.2 with Qt plugin
I seem to be the latest in a long line of people having trouble using Qt in Eclipse. I have Juno Service Release 1 with version 1.61 of the qt-eclipse plug-in. I'm also cross-compiling for an ...
0
votes
1answer
93 views
Qt Eclipse integration. Now always makes debug and release versions
The C++ program I am writing under Linux (OpenSuse) had a bug in it where it consumed all available RAM including page memory. This affected badly the system and all programs it was running. More ...
1
vote
0answers
739 views
Qt and Eclipse: “make” environment variable path?
Problem
I get the following error from a Qt eclipse project: Program "make" not found in PATH (see below image)
Setting
I have installed Qt SDK 1.2.1, Eclipse CDT, Qt Eclipse Integration Tool ...
1
vote
1answer
6k views
Qt with Eclipse CDT Juno
I am having a difficult time trying to find a way to link the Qt library to my Eclipse project.
The Qt SDK package 4.8.1
with
Eclipse CDT Juno
Is there a way to link Qt libraries to eclipse?
1
vote
1answer
269 views
Can't debug C++ with Qt projects in Eclipse
I'm working on a C++ project using Qt libraries, and I'm working with Eclipse onto an Ubuntu virtual machine.
I have three problems right now I would need to solve:
Every line of code involving Qt ...
4
votes
1answer
736 views
Compiling Qt project into Eclipse using Cygwin compiler
I have downloaded Eclipse with the plug-in to work with C/C++ over Windows. I downloaded Cygwin (base and devel mostly) and works ok for a hello world application.
Now I want to work with Qt. Instead ...
3
votes
3answers
3k views
Eclipse, QT and “C++ project”: is it possible?
Need your help:
I want to use Eclipse CDT and QT without creating a "Qt gui project". Is it possible? How to include QT libraries to my C++ project, and how to call qmake/make to compile the program? ...
2
votes
1answer
4k views
Dubious error messages in Eclipse (CDT) while build succeeds
Using the Eclipse IDE for C/C++ Linux Developers (Version: Indigo Release) with g++ 4.1.2 (on Scientific Linux CERN 5 = RHEL 5), I currently work on a project where I make use of a Qt4 GUI as well as ...
3
votes
2answers
948 views
Cross-compiling in Eclipse CDT with Qt under Mac OSX
Let me list all that I have setup:
OS: Mac OSX - 10.6.8
IDE: Eclipse CDT Indigo
Framework: Qt 4.7.2
As known, the Qt doesn't have integration to Eclipse on Mac, so I installed everything using ...
1
vote
0answers
977 views
Integrating Qt with eclipse
I have stuck with problem of building Qt projects in Eclipse. First of all here is the sequence of steps which I went through when I installed Qt plugin.
I develop in Eclipse for Java Developers, so ...
4
votes
2answers
3k views
Qt Eclipse Integration not working
I was hoping to use the Qt plugin with Eclipse. The installation is very simple - just expand a tarball in the appropriate directory. After doing so, I can see trolltech folders under eclipse/features ...
0
votes
1answer
956 views
Eclipse CDT/Qt: have a Qt Gui project depend on another C++ project in the workspace
I've implemented a rather complex algorithm in an Eclipse C++ project ("MyAlgorithm") using Eclipse/CDT. In order to be able to visualise the steps of the algorithm, I'd like to create a simple Qt ...
0
votes
1answer
814 views
Qt Eclipse Integration: How to add a custom widget to UI once? (not to the designer menu)
I'm using the Qt Eclipse integration and have written an own Widget (inherits QWidget) - is it possible to add the widget to the .ui (.ui file) without integrating it in the Qt C++ Widget Box menu?
1
vote
2answers
433 views
The way of the include in c++ using Eclipse
I learned that if I compile main.cpp the compiler simply replaces all includes with the actual content of the file i.e. #include "LongClassName.h" with the text in that file. This is done recursively ...
2
votes
1answer
146 views
Mupltiple Qt project files in one Eclipse project
Is it possible to have multiple Qt project files in a single Eclipse project?
The reason that I want to do this, is that I want to generate two different executables that have a large code base in ...