0
votes
0answers
4 views
qmake: Test for current spec.
I would like to detect whether qmake is currently building using MingW (win32-gcc) or Visual Studio (win32-msvc200X).
At the moment I am using the following construct:
windows{
…
0
votes
1answer
36 views
Qt and QMake build dir
I would like to build qt and qt application out of the source tree. Do you know how to set from the command line the .obj directory both with configure and qmake?
1
vote
3answers
62 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 te …
0
votes
1answer
28 views
How to execute external programs from qmake?
I am trying run a program from a qmake .pro file which modifies the final binary. I have already tried system(...) but it does not work. The reason I want this is because by defaul …
0
votes
1answer
40 views
How to make qmake compile multiple cross platform binaries
I'm using QT Creator on a project and was wondering if there's a single command to compile the project to a Mac, Windows, & Linux binaries so I can easily send them to other co …
0
votes
0answers
55 views
strange QT error when using with openssl
hi all
I have successfully linked my QT application with openssl and I can use it in my application now.
But qmake makes an strange error when it reaches my openssl function use(it …
0
votes
2answers
237 views
How to build Qwt on Windows
Here's what I've done:
Downloaded qwt-4.2.0-setup-qt230nc.exe from sourceforge
Unpack to C:\Program Files\Qwt
Go to Qt Command Prompt
Run msvc-qmake.bat.
Get the output.
Now …
0
votes
2answers
128 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/
mai …
0
votes
3answers
75 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 b …
0
votes
2answers
69 views
what is use of makefile ?
what is the purpose of makefile, .pro file .
0
votes
3answers
129 views
How to format/change qmake build output
Hello,
how can I format the make output (!!by only changing the qmake project file!!).
My compilation lines continue growing, and the one-line-warnings/errors almost disappear bet …
0
votes
0answers
127 views
Static lib that links another static lib and qmake? Odd linking error
I have two qt .pro files, both using the lib TEMPLATE and staticlib CONFIG. The first library (lets call it 'core') is a dependency for the second lib (I'll call it 'foo'). In fact …
1
vote
2answers
56 views
Variables that persist across .pro files from a subdirs pro file
Greetings,
I've got a .pro file that looks like:
TEMPLATE = subdirs
SUBDIRS = foo bar
I want to set a variable, or define, or something in my subdirs .pro file that can be read …
1
vote
1answer
84 views
qmake and multiple MSVS versions
From Visual Studio 2008 Command Prompt I run this command to generate .vcproj file:
>qmake -spec win32-msvc2008
And get a warning message:
WARNING: Generator: MSVC.NET: Foun …
3
votes
2answers
407 views
How to use QMake’s subdirs template?
Hi,
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 b …
