Tagged Questions
qmake is a Qt tool designed to build Qt projects.
15
votes
3answers
5k views
How to create a subdirectory for a project in qt-creator?
I would like to divide my qt project into several directories, because it is growing pretty large. However, when I click in browser in qt-creator, there is no 'Add directory' and no such thing in 'Add ...
14
votes
3answers
8k views
How to specify different Debug/Release output directories in QMake .pro file
I have a Qt project and I would like to output compilation files outside the source tree.
I currently have the following directory structure:
/
|_/build
|_/mylib
|_/include
|_/src
|_/resources
...
12
votes
2answers
11k views
How to use QMake's subdirs template?
I'm starting to learn Qt. I'm moving from the Visual Studio world and I am looking for a way to organize my project's structure using QMake. I've found the 'subdirs' template but I have quite a hard ...
11
votes
6answers
2k views
Why does Qt use it's own make tool, qmake?
I just started using Qt and noticed that it uses it's own make tool, qmake. Why does Qt use its own make tool?
Is there something special that prevents it from using a standard make tool?
Does qmake ...
9
votes
5answers
9k views
How to compile a simple Qt and c++ application using g++ on mac os x?
I am trying to use Qt for a project in school but am running into problems. I started following the tutorials and I am running into Makefile problems. Most of the tutorials say to run qmake -project, ...
8
votes
5answers
10k views
How to build qt out of source
I was searching a lot through Qt forums and Google for the last few days, but I could not find any obvious answer to this question.
I found the -prefix option (not even documented on Windows) that ...
8
votes
2answers
6k views
Linking with a debug/release lib with qmake/Qt Creator
I am using Qt Creator and have a Qt GUI project that depends on a C++ static library project. I want to link the release version of the GUI app with the release build of the .lib and the debug ...
7
votes
2answers
122 views
How to copy Qt runtime DLLs to project output
I have a simple project created in Qt Creator (installed using Qt SDK 1.1.4). It runs just fine from within Qt Creator, but if I then browse to the output directory in Windows and double-click the ...
6
votes
2answers
1k views
How to mix Qt, C++ and Obj-C/Cocoa
I have a pure C++/Qt project on a Mac, but I now find that I need to call a few methods only available in the Cocoa API. Following instructions listed here:
...
6
votes
2answers
888 views
How to get qmake to generate “project dependencies” in a Visual Studio .sln project
I have a qmake build of a few libraries and an app which depends on them. Using the subdirs template I'm able to get qmake to output a .sln file which works almost to my liking in VC2008. Though ...
6
votes
3answers
6k views
Qmake project dependencies (linked libraries)
I have a project that links to a number of shared libraries.
Lets say project A depends on projects B and C
Ideally, I want to impose the following dependencies in my project file:
Rebuild project ...
5
votes
2answers
210 views
How do I make apps smaller with qmake and macdeployqt
How do I make apps smaller with qmake and macdeployqt?
I have set QT = core gui in the projects .pro file and run qmake and macdeployqt on the resulting app.
The problem is that the program is ...
5
votes
4answers
5k views
How to generate .sln/.vcproj using qmake
I have main.cpp in c:\test folder and do the following:
qmake -project
qmake -tp vc test.pro
The answer is:
WARNING: Unable to generate output for: C:/test//Makefile.Debug [TEMPLATE vcapp]
...
5
votes
4answers
3k views
qmake: How do I copy .dll/.so's to the output directory?
I have a Qt-project that builds a dll/shared-library and another Qt-project that tests the library.
Is there any good way to have qmake copy the dll to the output-folder of the test-project?
5
votes
4answers
4k views
QMake 'subdirs' template - executing a target?
I am putting together a build system for my Qt app using a qmake .pro file that uses the 'subdirs' template. This works fine, and allows me to specify the order that each target is built, so ...
4
votes
1answer
211 views
Qt: passing variables to subprojects
The structure of my project is as follow:
Proj
Proj.pro
--subProj
--subProj.pro
----subsubProj
----subsubProj.pro
Is there a way i can instance a global variable in subProj.pro and call it en e.g. ...
4
votes
3answers
609 views
Qt MOC Filename Collisions using multiple .pri files
In order to keep my Qt project somewhat organized (using Qt Creator), I've got one .pro file and multiple .pri files. Just recently I added a class to one of my .pri files that has the same filename ...
4
votes
2answers
3k views
How do I use qmake to build multiple binaries in a single project?
I'm writing a small qt app suite that consists of a set of small programs that work on the same set of files. They are organized like this:
/
app1/
main.cpp
app2/
main.cpp
app3/
...
4
votes
2answers
3k views
QtCreator project with multiple libs and one exe
Like I said in a previous question, I'm planning on porting a Qt project from VC++ to QtCreator.
The project consists of 4 subprojects: 3 of them are libs and the last one makes the exe.
The ...
4
votes
3answers
2k views
qmake and QT_INSTALL_PREFIX. How can I select a new location for Qt library?
I am new to qmake and I am trying to build an existing application. Qt was originally installed in /usr/local/lib/Qt-4.3.5 and 'qmake -query QT_INSTALL_PREFIX' returns that path.
I have moved the Qt ...
4
votes
5answers
7k views
How do a specify a library file dependency for qmake in Qt?
Have a SomeLib.pro file that contains:
CONFIG += debug
TEMPLATE = lib
TARGET = SomeLib
..
Then in a dependent SomeApp.pro:
..
debug:LIBS += -lSomeLib_debug
..
How can I force SomeApp to build ...
3
votes
1answer
57 views
Can I get qmake -project to add LIBS += … to my .pro file?
I have a project that uses Qt. So I have "qmake" make my Makefile from the .pro file. But Qmake can also make that .pro file: qmake -project . This worked until I needed to add an external extra ...
3
votes
3answers
433 views
Using Boost libraries with mingw
I'm tryin to use boost threads on mingw (TDM-mingw, 32bit based on gcc4.6) from qtcreator using qmake. I managed to compile boost 1.4.7 using
bjam --toolset=gcc --layout=tagged --without-mpi ...
3
votes
2answers
102 views
How to use qmake with two source files which have the same name?
My Qt project have two source files with the same name but in different folder.
The pro file is:
SOURCES = A/Test.cpp
SOURCES += B/Test.cpp
It can generate Visual Studio solution file via Qt ...
3
votes
1answer
123 views
qmake add a variable into the .pro file
i have a qmake file genrated by Qt creator.
I am modifing it but i do not manage to understand how to create a variable.
for example i want to devlare the library MYPATH as i did here:
MYPATH = ...
3
votes
1answer
77 views
How do I prevent qmake creating an extra “moc” folder in this 'out of source' build scenario?
(Apologies, I can't think of a better way of explaining except through including the following detail)
Pre-build structure:
F:\
└ Project\
└ Project.pro
└ ProjectSettings.pri
└ Source\
└ ...
3
votes
1answer
509 views
How to use qmake file with google test and shared library
I started with a makefile that would generate the dependencies of my C++ files. It was a C++ project using google test. Later, I started a Qt project which uses qmake and links to a shared library ...
3
votes
3answers
533 views
Is it possible to use Qt Creator without qmake?
I've heard that it is possible to build non-Qt applications (like simple C++ HelloWorld) with Qt Creator. I downloaded and installed Qt Creator, and tried to compile simple code with it. But I didn't ...
3
votes
1answer
620 views
How to change qmake release flags for gcc? (Change -O2 to -Os)
With qmake you can quite easy change so you build a debug version,
or a release version. Just modify the CONFIG var and the compile flags change.
CONFIG += debug
CONFIG += release
When you use the ...
3
votes
1answer
255 views
A few questions about Qt pro-file
I want to locate generated Makefile into some another directory and use it from there.
Here is the part of my pro-file:
OBJECTS_DIR = build/Objects-files
MOC_DIR = build/Moc-files
RCC_DIR = ...
3
votes
1answer
512 views
qmake: How to avoid having version numbers in .so file name
I'm trying to build a dynamic library on Linux using qmake. Here is my .pro file:
TEMPLATE = lib
TARGET = sqxUiBase
QT += core gui
CONFIG += dll
INCLUDEPATH += ../../public/include
...
3
votes
2answers
2k views
Add a define to qmake WITH a value?
How do I add a define with qmake WITH a value:
For example, this does not work (as I expected) in my .pro file:
DEFINES += WINVER 0x0500
nor
DEFINES += "WINVER 0x0500"
How do I define WINVER as ...
3
votes
1answer
244 views
Getting values from pro files in Qt
I am using Qt 4.5 in Windows XP. My pro file has the variable VERSION = 1.0. Now i need to read this variable and get its value (1.0) from the source code. So that I don't have to maintain another ...
3
votes
1answer
456 views
How to generate a single translation file for a large Qt project?
I have a large project with one qmake project file defining all project components using a 'subdirs' template. Currently I define translation files in the qmake files of each sub-project. This results ...
3
votes
4answers
529 views
Retrieve revision number in VS with qmake
My current workflow:
hg update (or whatever one uses to check out a revision)
MyProject.pro → qmake → MyProject.vcproj
Open Visual Studio, edit files
Build project
During the build step, how can I ...
3
votes
4answers
1k views
Finding compiler vendor / version using qmake
Is there any way to get the version and vendor of the compiler used by the user through qmake? What I need is to disable building some targets of my project when g++ 3.x is used and enable them when ...
3
votes
4answers
3k views
Identifier for win64 configuration in Qmake
Is there a "win64" identifier in Qmake project files? Qt Qmake advanced documentation does not mention other than unix / macx / win32.
So far I've tried using:
win32:message("using win32")
...
2
votes
3answers
45 views
How do I create an 'install' package for a Qt application?
Generally to install a package on a linux-based operating system you use
./configure
make
make install
How does this work? And how do I create a package that can be installed this way?
My ...
2
votes
2answers
116 views
How to add specific flags to moc in a qmake project?
I compile a Qt executable using qmake && make on the following project.pro file:
INCLUDEPATH *= ../../dependencies/boost
QT *= opengl xml
CONFIG *= qt opengl static
TARGET = myexe
HEADERS = ...
2
votes
2answers
92 views
Qt: *.pro vs *.pri
What is the difference between *.pro and *.pri configuration files for qmake?
What should go into a *.pro file and what should go into a *.pri file?
2
votes
2answers
83 views
Qmake: how to remove compiler flag for a certain project, without changing qmake.conf?
I'm using qmake and Visual Studio. In release build qmake adds /GL and /O2 flags to all projects, and I need to remove those two flags for certain libraries within my whole Qt project. Is there a way? ...
2
votes
1answer
96 views
How to get QtCreator to link incrementally with nmake?
I used to develop in Visual Studio (2008) but almost completely switched to developing in QtCreator now, mainly due to Code Navigation, refactoring and Code Completion.
I'm using the win32-msvc2008 ...
2
votes
2answers
101 views
Redundant #include in C/C++?
Suppose now I have three source files: ClassA.hpp, ClassB.hpp, and ClassC.hpp.
ClassB inherits from ClassA, and ClassC inherits from ClassB.
So, in ClassB.hpp, I wrote #include "ClassA.hpp".
Then, ...
2
votes
1answer
184 views
Developing QT applications in Xcode?
My IDE of choice for the Mac (at least for C++ and Objective-C development) is Xcode. I have a 64-bit Intel Mac with OS X Lion installed, and Xcode version 4.2 downloaded from the Mac App Store.
My ...
2
votes
1answer
73 views
QT: normal VS project file to build?
I'm using QT (4.7.3) and I'd like to make normal VS solution/project files, build it, and step through the code with debugger to learn the code while reading tutorial...
Instead I have that yet ...
2
votes
1answer
264 views
QtWebKit dependency missing from qmake generated Makefile
I just started working with Qt (in C++), so I followed a "hello, world" example I found online. I created the program hello.cpp in the directory hello:
#include <QtGui>
int main(int argc, char ...
2
votes
2answers
400 views
How should multiple projects be managed in Qt Creator?
I have an exe that depends on multiple static libs and in visual studio, they are all managed as part of 1 sln file and the exe has dependencies on the static libs.
How can this be set up in Qt ...
2
votes
2answers
214 views
building a Qt application outside the Qt sourcetree
I made a simple Qt application that's based on an Qt example application and builds fine from within the "examples" directory of the Qt sourcetree.
Now I want to move my project files to a different ...
2
votes
1answer
161 views
How do I let Callgrind access my Qt project's source code?
I built a Qt project in Debug mode with Qt Creator, ran Callgrind to generate profiling data and tried loading it into Cachegrind. I noticed that I only see profiling information for Qt classes, so I ...
2
votes
1answer
231 views
exporting symbols in a dynamic qt library
I'm trying to create a dynamic library using Qt on OS X 10.6.7 and Qt 4.7.3. I have created the most basic test I can think of (see below or https://gist.github.com/1016045) and yet
otool -T ...